Twitter JSON

Steven Coats DHH19 Hackathon, May 2019

JSON is a data serializiation format

JSON stands for JavaScript Object Notation

Originally intended to be part of the JavaScript specifications for the JavaScript programming language, the format is language-independent

It is the most widely-used format for data transfer between servers and web browsers

Social media platforms give access to data in JSON format through their APIs

The data we are working with is in JSON format

JSON is a serialization format

Serialization is the conversion of a complex data structure to a series of machine-readable basic units, such as UTF-8 bytes

Serialization is necessary because many data objects like data frames are represented and stored differently in different programming languages

There are many serialization formats

XML (was used to communicate data to browsers in early 2000s), YAML (superset of JSON, often used for congifuration files)

JSON is "lightweight": It can communicate the same information as XML using fewer bytes

JSON files are structured hierarchical data objects

The entities in JSON are attribute-value pairs

Attributes are strings, values are strings, numbers, boolean True or False, objects, null, or arrays of these elements

In [1]:
{"event": "DHH19"}
Out[1]:
{'event': 'DHH19'}
In [70]:
{"event": "DHH19", "people": ["Mikko", "Eetu", "Jukka","Jouni"]}
Out[70]:
{'event': 'DHH19', 'people': ['Mikko', 'Eetu', 'Jukka', 'Jouni']}
In [3]:
{"event": "DHH19", "people": ["Mikko", "Eetu", "Jukka","Jouni"], "day":1}
Out[3]:
{'event': 'DHH19', 'people': ['Mikko', 'Eetu'], 'day': 1}
In [4]:
{"event": "DHH19", "people": ["Mikko", "Eetu", "Jukka","Jouni"], "day":1,"presentation":True}
Out[4]:
{'event': 'DHH19', 'people': ['Mikko', 'Eetu'], 'day': 1, 'presentation': True}
In [73]:
data = {"event": "DHH19", "people": [{"name": "Mikko", "university":"Helsinki"},{"name":"Eetu","university":"Helsinki"},{"name":"Jukka","university":"Aalto"},{"name":"Jouni","university":"Helsinki"}], "day":1,"presentation":True}

"Pretty printing" JSON makes it easier to see the hierarchy

In [74]:
import json
print(json.dumps(data, indent = 4))
{
    "event": "DHH19",
    "people": [
        {
            "name": "Mikko",
            "university": "Helsinki"
        },
        {
            "name": "Eetu",
            "university": "Helsinki"
        },
        {
            "name": "Jukka",
            "university": "Aalto"
        },
        {
            "name": "Jouni",
            "university": "Helsinki"
        }
    ],
    "day": 1,
    "presentation": true
}

Our tweets are stored in files in which each line is a long json object with many attribute-value pairs. Let's look at a basic tweet.

In [8]:
with open("/home/cloud-user/Hackathon/brexit/data/continuous_rehydrated/rehydrated_000.jsonl") as f:
    for x in f:
        tweet = json.loads(x)
        if  not "retweeted_status" in tweet:
            print(json.dumps(tweet,indent = 4))
            break
        else:
            continue
    
{
    "created_at": "Wed Apr 03 14:15:56 +0000 2019",
    "id": 1113445030268624897,
    "id_str": "1113445030268624897",
    "full_text": "Macron, Irish PM urge UK to propose alternative Brexit plan \nhttps://t.co/jKvleBEznD via @FRANCE24\n#Brexit #UK #EU #Scotland #NI #Wales #England #Ireland #voters #politics #workers #economy #trade #finance #markets #investors",
    "truncated": false,
    "display_text_range": [
        0,
        225
    ],
    "entities": {
        "hashtags": [
            {
                "text": "Brexit",
                "indices": [
                    99,
                    106
                ]
            },
            {
                "text": "UK",
                "indices": [
                    107,
                    110
                ]
            },
            {
                "text": "EU",
                "indices": [
                    111,
                    114
                ]
            },
            {
                "text": "Scotland",
                "indices": [
                    115,
                    124
                ]
            },
            {
                "text": "NI",
                "indices": [
                    125,
                    128
                ]
            },
            {
                "text": "Wales",
                "indices": [
                    129,
                    135
                ]
            },
            {
                "text": "England",
                "indices": [
                    136,
                    144
                ]
            },
            {
                "text": "Ireland",
                "indices": [
                    145,
                    153
                ]
            },
            {
                "text": "voters",
                "indices": [
                    154,
                    161
                ]
            },
            {
                "text": "politics",
                "indices": [
                    162,
                    171
                ]
            },
            {
                "text": "workers",
                "indices": [
                    172,
                    180
                ]
            },
            {
                "text": "economy",
                "indices": [
                    181,
                    189
                ]
            },
            {
                "text": "trade",
                "indices": [
                    190,
                    196
                ]
            },
            {
                "text": "finance",
                "indices": [
                    197,
                    205
                ]
            },
            {
                "text": "markets",
                "indices": [
                    206,
                    214
                ]
            },
            {
                "text": "investors",
                "indices": [
                    215,
                    225
                ]
            }
        ],
        "symbols": [],
        "user_mentions": [
            {
                "screen_name": "FRANCE24",
                "name": "FRANCE 24",
                "id": 1994321,
                "id_str": "1994321",
                "indices": [
                    89,
                    98
                ]
            }
        ],
        "urls": [
            {
                "url": "https://t.co/jKvleBEznD",
                "expanded_url": "http://f24.my/4gUE.T",
                "display_url": "f24.my/4gUE.T",
                "indices": [
                    61,
                    84
                ]
            }
        ]
    },
    "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
    "in_reply_to_status_id": null,
    "in_reply_to_status_id_str": null,
    "in_reply_to_user_id": null,
    "in_reply_to_user_id_str": null,
    "in_reply_to_screen_name": null,
    "user": {
        "id": 22794611,
        "id_str": "22794611",
        "name": "Chuck Dalldorf",
        "screen_name": "ChuckDalldorf",
        "location": "",
        "description": "Communication & political consultant, San Juan Island Fire & Rescue PIO, Friday Harbor WA. Brooklyn native. USCG Auxiliary, USAF vet. Scotland forever.",
        "url": null,
        "entities": {
            "description": {
                "urls": []
            }
        },
        "protected": false,
        "followers_count": 4093,
        "friends_count": 4762,
        "listed_count": 859,
        "created_at": "Wed Mar 04 16:24:59 +0000 2009",
        "favourites_count": 56367,
        "utc_offset": null,
        "time_zone": null,
        "geo_enabled": false,
        "verified": false,
        "statuses_count": 220712,
        "lang": "en",
        "contributors_enabled": false,
        "is_translator": false,
        "is_translation_enabled": false,
        "profile_background_color": "9AE4E8",
        "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif",
        "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif",
        "profile_background_tile": false,
        "profile_image_url": "http://pbs.twimg.com/profile_images/1105496808254402560/421PTMXt_normal.png",
        "profile_image_url_https": "https://pbs.twimg.com/profile_images/1105496808254402560/421PTMXt_normal.png",
        "profile_banner_url": "https://pbs.twimg.com/profile_banners/22794611/1555173833",
        "profile_image_extensions_alt_text": null,
        "profile_banner_extensions_alt_text": null,
        "profile_link_color": "E81C4F",
        "profile_sidebar_border_color": "BDDCAD",
        "profile_sidebar_fill_color": "DDFFCC",
        "profile_text_color": "333333",
        "profile_use_background_image": true,
        "has_extended_profile": false,
        "default_profile": false,
        "default_profile_image": false,
        "following": false,
        "follow_request_sent": false,
        "notifications": false,
        "translator_type": "none"
    },
    "geo": null,
    "coordinates": null,
    "place": null,
    "contributors": null,
    "is_quote_status": false,
    "retweet_count": 1,
    "favorite_count": 0,
    "favorited": false,
    "retweeted": false,
    "possibly_sensitive": false,
    "lang": "en"
}

There are many entities in every tweet, which, depending on our planned analysis, may or may not be interesting.

The unique id of the tweet:

In [9]:
tweet["id"]
Out[9]:
1113445030268624897

The tweet text:

In [10]:
tweet["full_text"]
Out[10]:
'Macron, Irish PM urge UK to propose alternative Brexit plan \nhttps://t.co/jKvleBEznD via @FRANCE24\n#Brexit #UK #EU #Scotland #NI #Wales #England #Ireland #voters #politics #workers #economy #trade #finance #markets #investors'

The language of the tweet:

In [11]:
tweet["lang"]
Out[11]:
'en'

The name of the user:

In [12]:
tweet["user"]["name"]
Out[12]:
'Chuck Dalldorf'

The screen name of the user (i.e. the "handle", prepended by @):

In [13]:
tweet["user"]["screen_name"]
Out[13]:
'ChuckDalldorf'
In [ ]:
The location of the user (i.e. the "home location"):
In [85]:
tweet["user"]["location"]
Out[85]:
''

Has the user appended a place object by clicking on the field when composing the text?

In [21]:
print(tweet.get("place"))
None

Did the user send exact latitude-longitude coordinates of the device locatio when the tweet was broadcast? (Need to have activated the option in the profile)

In [22]:
print(tweet.get("geo"))
None

The user's description of him/herself:

In [15]:
tweet["user"]["description"]
Out[15]:
'Communication & political consultant, San Juan Island Fire & Rescue PIO, Friday Harbor WA. Brooklyn native. USCG Auxiliary, USAF vet. Scotland forever.'

You may be able to extract demographic information from this field.

Whether or not the Twitter agent who downloaded these tweets (in this case, Eetu Mäkela!) favorited this tweet:

In [16]:
tweet["favorited"]
Out[16]:
False

If the tweet has a link to "possibly sensitive" content (mostly links to porn):

In [17]:
tweet["possibly_sensitive"]
Out[17]:
False

Whether or not a national government has decided that this tweet should not be visible in that country (usually due to a copyright violation):

In [20]:
print(tweet.get("withheld_in_countries"))
None

The user's profile image

user_image

The background image for the tweet

user_image

There are many other fields! You get the idea.

JSON parsing

Modules in Python:

ujson and orjson may be a bit faster

Libraries in R:

If you prefer working in R, the same sorts of things are possible as in Python

In [24]:
%load_ext rpy2.ipython
The rpy2.ipython extension is already loaded. To reload it, use:
  %reload_ext rpy2.ipython
In [25]:
%%R

library(rjson)
lines <- readLines("/home/cloud-user/Hackathon/brexit/data/continuous_rehydrated/rehydrated_000.jsonl")
jsons <- sapply(lines, fromJSON)
In [26]:
%%R

jsons[[5]]$full_text
[1] "Macron, Irish PM urge UK to propose alternative Brexit plan \nhttps://t.co/jKvleBEznD via @FRANCE24\n#Brexit #UK #EU #Scotland #NI #Wales #England #Ireland #voters #politics #workers #economy #trade #finance #markets #investors"

Not all of the possible fields are present in each tweet.

If we flatten all the json fields in the first 10,000 tweets, we see that they range from 52 to 489 payloads.

Tweets with many fields are almost always retweets, which contain all of the attributes of the tweet being retweeted, as well as the parent tweet's attributes.

In [28]:
%%R

sapply(1:length(jsons), function(x) length(names(unlist(jsons[[x]]))))
    [1] 322 137 229 181 112 146 195  84  64 129 137 130 117 216 293 132 127  99
   [19] 197 128  66 214 114  55 220 157 188 131 179 128 215 276 132 191 182 321
   [37] 125 314 167 106 276 303  79 274 188  78 202 249 145 216 218 115 212 153
   [55] 125 163 181  69 134 212 215 123 237 117  66 214 229 144 206 117 220  61
   [73] 236 193 220 119 124 276  58 276 195 220 133 276 296 134 155 136 325 125
   [91] 195 130  64 133 130 276 180 121 282 239 122 287 117  91 119  65 134 178
  [109] 150  71 121 280 170 133 134 194 237 276 276  55 124 217 182 122  97 123
  [127] 274 122 133 322 181 171 106 134 182 140 194 166 181 222 112 195  55 188
  [145] 123 124 182 148 124 128 104 109 188 121 123 179 195 134 276 202 276 123
  [163] 194 121 219 274 220 124 214 282  72 196 117 188  72 205 188 250 130 214
  [181] 139 212 220  62 110 122 134 122 282 148 201 168 116 220 220 214 126 132
  [199] 137 225 181 188 188  71 196 321 117 227 217 124 131 285 182 116  77 220
  [217] 175 215 123 274 182 217 215 102 128 188  67 217 109 184 116 124 123 134
  [235]  86 188 125 122 154 138 136 154  91 161 148 138 208 182 150 276 276 276
  [253] 130 216 127 152 182  61 181 121 303 181 276 217 215  69 220 194 239 124
  [271] 161 150 112 123 356 275 198 185 123 275 179  76 199 265 182 118 122  66
  [289] 181 276 276 192  57 121 223 122  67 225 116 163 276 222  67 193 137 214
  [307] 142 131 129  64 237  84 216 217 171 147  66 129 140 203 130 138 140 239
  [325] 114 124 120 322 133 143 288 123 182 276 153 192 197 186  74 188 171 168
  [343]  91  60  94  55  79 150 130 120 124 134 169 179 181 187 134 130 223 109
  [361] 223 125 305  77 206 280  83 276  78 184 123 140 123 194 139 304 109 225
  [379] 119 276 296  69  61 128 244 198 195 276 188 252 181 180 182  78  60  87
  [397] 125 322 275 276 111 217 123 113 282 123 225 131 358 203 224 144  77 162
  [415] 122 133 250  93 125 130 189 205 116 220 203  66 138  84 131 130 282 217
  [433] 140 134 276 198 220 219 131 174 119 217 282  76 123 223 124 275 140 199
  [451] 273 187 245 124 134 112 186 134 186 180 124 287 196 179 113 120 132 179
  [469] 196 276 222 275  80 196 128 125 140 122 140 109 116 183 195 146 128 276
  [487] 205 254  72  70 165 223  73 273 172 276 135  61  91  69 186  67 276 195
  [505] 138 291 123 326 166 183 243 172 124 122 216  67 123 191 177  87 135 134
  [523] 129 276 124 134 151  70 313 214 191 275 129 216 124 199 197 134 123 135
  [541] 182  74 211 132 217 118 137 225 204  67 131 182 194 276 322 131 127 282
  [559]  92 126 118 199 127 145 223 191 146 181 124 196 133 177 239  66 106 109
  [577] 327 276 228 210 194 124 137 140 124 199 178 143 177  67 122 127 199 276
  [595] 195 276 276 125 218 150 135  70 140  67 195 274 192 139 216 217 188 117
  [613] 217 130 128 131 182 103 133 196 117 107 276 137 182  89 123 178  69 266
  [631]  96 145 322  52 133 133 132 220 130 182 190 103 205 246 134 140 125 184
  [649] 217 121  84 225 139 110 177 226 124 177 120 180 220  79  72 199 182 276
  [667] 111 276 133 116 178 196  57 276 108 120  76 227 186 210 244 127 189 202
  [685] 199 217 194 113 148 275 124  84 154 217 121 117 121 134 184 124 219 121
  [703] 119 125 123 123 179 137 118 216 124 223 138 222 124 182 128 168  77 121
  [721] 159 207 157  67 275 123 219 123 134 276 122  68 151 176 180 140 118 193
  [739] 319 125 121  72  84 123 231 114 188 144 123 199 226  75  68  67  60 113
  [757] 195  70 171 154 121 177 192 131 134 122 106 130 122  61 123 248 215 128
  [775] 205 218 125 226 148 319  60 275 148 138 123 120 163 210 276 328 121 124
  [793] 134 124 218 187 216 276 220 276  72  76 123 174 216 314 166 123  72  59
  [811] 110 124  81 217 316 141 180 321 117 124 210 199 133 220  79 140 203  65
  [829] 201 219 134 136 229 191 276 196 187 181 163 181 173  76 121 276 143 124
  [847] 220 282 228 139 188 217  70 281 118 196 112  88 282  67 150 312 122 139
  [865] 217 123 196 116 149 124 213  61 282 305 131 138 119 136 302  64 130  84
  [883] 226  78 126 274 124  66  72 220 139 220 177  83 276 195 185 217  73 133
  [901]  76  64 197  68 191 138  60 174 124 198 140 126  89 219 109 190 114 130
  [919] 231 111 226  84 273 124 220 123 218 148 207  61 138 124 220 276 321 129
  [937] 106 119 195  67 123 276  52 186 276 126 131 217 124 248 204 145 130 155
  [955] 124 276 130  66 182 181 247 219 149  71 182  95 216 140 185 137 276 219
  [973] 125 114 214 192  70 119 194 125 358 128 133 263 144 148  56 222 119 142
  [991] 124 153 215 110 124 238 189  73 123  69 131 151 187 282 119 122 123 115
 [1009]  76 122 125  67 273 127 276 181 282 107 117 181  67 124 123 276 190 207
 [1027] 321 107 122  66  67  73  76  72 220  62 182 137 116 122 322 131 276 229
 [1045] 276 138 178 195  99 202 274 130 276 130  70  71 125 182 220 134  75 115
 [1063] 273 114 236 114 124 223 128 243 143 122 133 226 121 188 207 207 182  61
 [1081] 121 276  88  70 175 200 274 190 210 282 187  59 196 174 122 130 124 274
 [1099] 205 282 217 171  64 199  72 124 138 226 171 220 137 121 137 124 123 167
 [1117]  58 134  67 121 124 191 254 137 193 134 140 177 187 141 124 194 259 121
 [1135] 116 125 123 124 133 185 223 167 178 122  85  54 156 182 156 140  52 133
 [1153] 127  84 111 122 117  60 216  61 124 173 237 109 130 218 147 138 130 128
 [1171]  76  97 150 122 176 206 170 214  73  59 322 155 180 182 181 126 122 137
 [1189] 180 121 120 200 124 283 223 124 220 274 170 167 181 235 276  66 180 240
 [1207] 117 123 123 217  86 122 110 276 276 122  75 208 276 123 223 335 282 123
 [1225] 114  70 155 319 182 274 131 120 127 248  60  73 193 296 196 231 295 133
 [1243] 320 124 125 276 130 140 200 121 201 117 124 217 130 206 217 143 216 276
 [1261] 133 197 124 128 124  54 182 134 124 276 276  76 128 122  64 124 179 137
 [1279] 139 177 124 275 337 134 274 120  55 276 177 220 132 207 117 280  66 276
 [1297] 205 182 295 220 282  67 133 217 123  67 236 122 201 156 181 139 124 201
 [1315] 117 276 125 178 124  64 182 226 121 220 215 229  61 189 276 153 123 182
 [1333] 182 134 217 108 276 134 134 276 222 217 276 181 177 123 164 131 388 124
 [1351]  57 131 274 223 226 321 194 276 125  73 182 146 120 276 125 225 196 168
 [1369]  92 220 182 121 219 197 126 130  61 227  78 177 317 223 127 186 119 166
 [1387] 276 141 199 253  73 124 193 230 137 188 137  83 328 131 126 178 195 175
 [1405] 128 129 124 165 124  77 137 250 364 186 217 188 219 130 220 142 219 111
 [1423] 197 183 113 133 125 121 131 132 261 238 236 121 205 276 217 122  70 114
 [1441] 124 129  66 134  83 109 206 124 276 195 202  91 193 276 172 131 101 175
 [1459]  85 139 199 130 140 217  58 182 130 199 175 133 134 123 119 188  73 106
 [1477] 138  73  70 194 217  61  70 182 197 124 199 143 134 182 216 352  79 276
 [1495] 170 198  76  67 182 140 276 225 216  59  72 276 219 128 148 124 143 361
 [1513]  82 140 128 136 136 195 181 217 282 123  66 225 193 217 124 143 198 246
 [1531] 188 134 138 130 187  85 192 127 120 231 195 134 215 130 143 195 187 146
 [1549] 195 145 146 274 195 337 276 209 147 321 142 196 276 139 273 122 140 276
 [1567] 111 118  59 220 135  66 266 274 170 135 119 163 186  75 124 276 121 177
 [1585]  78 225 112 124 229 322  67 219 151 259 106  73 274 217 217 166 143  77
 [1603] 182 222 276 145  61  96 188 173 143 123 199 245 122  71 149 205 134  64
 [1621] 275  55 131 133 263 225 139 276 141 116 189 180 182 133 146 136 196 188
 [1639] 118 153 322 217 118 122 128 171 288 188 276 293 226 218 314 135 181 140
 [1657] 192 176 281 182 186 119 188 132  84 196 276  82 198 112 216 104 217 128
 [1675] 142 225 188 166 121 127 202 137 127 135  73 123 111 214 120  67 183  70
 [1693] 276  73 122 145 119 276 194 140 106 221 182 131 210 216 136 122 124 124
 [1711] 145 138  96 217 124 105 151 185 201 152 276 224 121 204 182  64 182 186
 [1729] 191 276 182 182 244 223 320  58 120 188 122 223 276 225 328 123 264  70
 [1747] 128  66  68 174 123 124 276 183  61  63  61 276 275 135  66 192  96 124
 [1765] 151 182 183 128 192 246  88 217  73 182 122  72 133  64 222 117  82 141
 [1783] 130 275 224 136 124 123  52 276  73 188 217 182 321 139  86 166 225  67
 [1801] 199 180 137 186 276  74 176 203 120 121 112 156 124 131 145 173 225 199
 [1819] 196 180  67 118 167 193 137 186 107 130 110 218 118 135 186 321 290 154
 [1837] 116 188 224 144 170  86 216  58 128  70 188 124 125 149 217 137 148 154
 [1855] 126 189 100 203 206 106 199 115 142 182  72  64 176  67 150 222  55 181
 [1873]  66 201 226 225 215 130 193 180 182 180 195 280 176 274 177 116 115 114
 [1891] 328 247 300 201 117 111 130 215 143 112 217 122 137 275 124 188 277 117
 [1909] 111 188 276 136 118 167 157 134 204 123 183 322 116 143  63 119 124 128
 [1927] 216 328 319 115 140 195 142 138 328 117 194 294 113 214 174 141 276 231
 [1945] 275 217 203 273 116 190 182 199 307 123 124  73 217  88 205 217 152  61
 [1963] 187 114 122  69 136 274 107 158 129 123 242 235 144 123 140 194 125 204
 [1981] 172 276 120 224 121 142 322 236 194 217  84 250 220 173 199 276 182 120
 [1999] 122 322 123  76 145  58 151 155 195 129 127  72 202 149 133 118 134 217
 [2017] 182 141  70 188 141 120 120 180 124  52 166 121 140 182 122 276 321  61
 [2035] 130 224 134 124 146  58 122 155 200 186 276 120 220 274  67 214 202  60
 [2053] 120 204 193 328 179 276 162 187 204 276 154 312  64 352  74 122 166 182
 [2071] 124 322  90 186 221  66  66 327 124  58 128 194 276 123 123 141 167 139
 [2089] 138 170 217 196 216  60 130 137 264 118 194 117 201 195 220 134 180 276
 [2107] 137 276 139 186 136 127 148 140 208 156 131 127 122 220 247 192 136  72
 [2125]  58 206 177 206 111  55 292 180 224 276 218 154 276 151 194 276 106 123
 [2143] 139 145 118 214 128 128 106 104 121 188 148  67 220 227  72 154 188 137
 [2161]  55 195 128  66 151  67 177 196 270  64 122 197 182  76 124 119 134 258
 [2179] 217 142 282  63 118 137  53 220  61 131 117 164 293 223 274 194 194 182
 [2197] 230 205 320 139 220 187 164 123 163  63 223 147 276 130 122 180 182 196
 [2215] 134 217 140 186 138 123 328 276 188 226 172 196 198 130 148 293 182  76
 [2233] 202 123 333 300 276 184 155 138 133 322 124  66 125 146 282 165 188 188
 [2251] 145 133 185  70 116 196 169 211  52 223 202 138 173 121 122 228 134 209
 [2269] 117 124 123 134 322 175 276  81  65 182 132 133 140 218 215 272 124 166
 [2287] 274 120 192 118 210 103 152 111 215 202  59 123  67 141 196 130 150 184
 [2305] 282 154  75 322  79 145 121 220 172  71 180 140  70 186 274 188 201 221
 [2323] 194  70 139 166 223 116 217 121 276  71  67 223  67 130 287 228 117 280
 [2341] 136 102 147 245 144  61 121 123  72 118 282  70 128 124 181 151 135  72
 [2359] 105 118 132 124 132  82 232 132 128 123 227 124 186 121 163 121  79 128
 [2377]  66 132  77  81  64 186 132 156 134 276 186 182 217 121 188 321  61  80
 [2395] 141 113 331 121 207 182  63 182 196 124 182 150  61 105 197 175 200 182
 [2413] 160 211 132 276 276 134 134 264 196 180 123 282 264 149 328 264 224 325
 [2431] 165  79 126 123 205 202  64 321 272 215 126 216 123 197 246 133  67 220
 [2449] 124  65  70 193 130 121 119 276 130 181  75 132 276 216 109 134 106 218
 [2467] 311 276 180 124 187  80 127 137  82  64 219 130 137 128 124 223 254 303
 [2485] 322 282 132  65  66  64 144 130 154 118 129 182 187 124 126 199 134 253
 [2503] 191 196 186 215 188 274 182 199 328 134 196 173 282  78 194 114 175 281
 [2521] 223 130 204 188 276 273 187 322 195 167  67 152 276  66 274 191 210 175
 [2539] 169 138 327 169 140 216  55 213 172 172 217  85 326 276 211 122 125 137
 [2557] 115 177 129 216 141 199  64 196 218 275 182 100 223 195 204 124 172  89
 [2575] 217 180 188 121 125 155 216 216 131 157 195 204 146 133 180 223 139 133
 [2593] 124 142 276 130 119 125 276 182 180 180 200 111 280 241 211 195 182 140
 [2611] 123 141 199 262 124 195 124 165 126 121 110  91 200 119 219 220  63 124
 [2629] 201 216 143 198 171 122 194 184 134 130 140 127  69 181 130 215 123 122
 [2647] 146 195  94  99  99 274  99 197 177 124 276 143 133 214  90 216 322 200
 [2665] 276  67 222 281 124 328  58 180 140  59 220 119 256 285 106 187 138 177
 [2683] 140 151 275 222 124 225 190 217 109 117 218 264 217 113 116 131 122 164
 [2701] 223  66 123 134 276 114 187 137 282 248 194 133 216 202 182  55 275 185
 [2719] 134 262 217 182 121 173 127 141 209  58 102 215 182 126 247  64 222 127
 [2737] 189 276 174 134 274 328 223 134 127 124 112 332 231 320 124 111 119 281
 [2755] 199 193 217 131 211  60 130 217 133 226 174 197 133 182  67 165 138 188
 [2773] 148 123 132 184 198 244 152 127 193 276 209 275 274 129 210  75 217 148
 [2791] 126  60 188 137 223 192 124 119 222 140  66 188 166 187 216 182 223 216
 [2809]  55 186 182 275 196 122 133 121  61 112 322 124 123 125  72 123 165 183
 [2827] 251  55 197 240 189 305 121 134  72 182 215 124 120 215 272  82  70 186
 [2845] 163 118  70 223 195 179 149 275 116 222 227 129 214 208 281 217 121 209
 [2863] 134 191 121 120 217 275 134 306 119  85 126 217 127 194  88  72 319 262
 [2881]  67 166 151 294 183 205 134 120 122 121 193 188 249 109 111 185 126  55
 [2899] 127 217 130 188 133 117 276 213 201  65 142 241 128 115 216 133 174 213
 [2917]  63 132 123 123 201 137 215 191 125 217 276 282 282 186 208 143 127  86
 [2935] 192 216 276 205 193 180 215  92 333 328 211 134 127 235 127  60 119 183
 [2953]  78 240 124 193 134 113 130 182 216 180 123 223 194  73 129  67 134 256
 [2971] 195 124 214  75 124 122  57  75 192 217 151  61 182 322 123 145 120 281
 [2989] 131 274  63 196 194 196 276  60 303 178 124  67  67 124 182 115 237 276
 [3007]  66 276 264  87 126 217 117 165 125 128 170 219 123  64 138 156 122 200
 [3025] 179 185 230 272 175 124 188 126 328 123 124 130 182 133 181 196 263 149
 [3043] 191 127  84  77 130  71 125 188 260 217 220 132 193 182 153 127 126 188
 [3061] 121 233 217 115 134 245 217 180 108 221 219 116 116 130 304 216 188 130
 [3079] 112 144  61 195 224 138 275 256 171 273 120 181 157 131  63  77 220  55
 [3097] 201 212 118 127 133  61 119 276 226 181 144 260 276 124 124 169 187 276
 [3115]  81 180  78 148 225  67 124 276 173 131 264 185 127 122 155 211 134 181
 [3133] 121 132 133  58 136 230 210 187 192 124 291  75 123 145  98 204  66 179
 [3151] 255 259 276  79 183 138 286 126 282 181  69 276 253 182 217 124 179 101
 [3169] 196 274 146 322 125  74  61  55 125 124 150 182 181 122 111 282 117 196
 [3187] 282 272 124 176 125 129 199 133 208 193 211 168 182 186 276 231 197 186
 [3205] 194 135 276  80 253 276 177  67 124 220 130 276 190 220 188 190 231 203
 [3223] 124 188 183  80 134 124  94  94 275 180 182 151 185 213 179 161 124 140
 [3241] 199 130 307 193 212 106 163  85  60 189 176 199 206 188  90 127 140  54
 [3259] 282 117 179  55 181 187 186 219 179 191 125 248 182 121 202 179  61  65
 [3277] 175 123 141  67 121 186 222 124 223 133 136  64  58 134  64 294 119 276
 [3295] 122 124 188 188 134 182 147 287 276 130 139 181 280 130 122 276 122 181
 [3313] 276 119 195 274 134 203  61 123 196 194 198 205 196  64 260 117 176 182
 [3331] 276 138 112 204 198  63 182 124 195 146 134 124 131  75 197 322 293 220
 [3349] 124 182 260 124 187 182 188 282 120 119 124 120 147 186 187  72 125 117
 [3367] 180 193 199 134 180 180 122 143 180 194 126  61 130  58 124 193 276 178
 [3385]  87 119 123 172 124 218 132 194 264  74 199 137  65 188 142 140 322  83
 [3403] 172 172 178 138  68 179 188 274 132 276  61  78 101 253 120 121  72 133
 [3421] 186 130 276 145 134 181 276 118 186 168 182  54 124 130 132 103 109 127
 [3439] 214 276 185 125 134 147 211 187 164 276 220 274 117 160 186  77 122 196
 [3457] 125 125 281 206  69 282 117 182 196 282 275 181  72 202 225 243 111 122
 [3475] 312 186 116 171 130 123 115 131 276 276 319 121 237 142 124 204 205 120
 [3493] 276 123  64 195 138 186 293 176 282  54 132 117 105 219 276 321 182 133
 [3511] 276 132 196 121 187 110 198 226 194 306 166 151 182 115 131 206 200 120
 [3529] 128 171 226 127 182 178 133 220 130 122 128 226 321 208 199  52 166 131
 [3547] 204 202  75  74 282 188 152 122 195 187 130 182 274 188 124 220 276 130
 [3565] 119 130 252  55 124 126 219 276  91  63 261 124 124 146 125 195 120 165
 [3583]  76 186 276 181 121 133 130 276 124 182 116 188 169 182 115  70  85 216
 [3601] 216 276  85 179 124 198 198 132 131 173 220 181 280 219 197 188  79 188
 [3619]  77 252 175 140 296 276 200 327 137 123 124 128 130 282 147 182 128 129
 [3637] 146  53 161 231 165  58 130 276 181 182 276 209 282 276 193  76 205 200
 [3655] 172 260 135 182 273 178 122 124 171 219 135 276 196 218  60 152 123 148
 [3673] 279 121  88 188 322 208 285 187 118 187 201 133 123 152 188 296 305 204
 [3691] 328 180 172  87 115 195 149  97 130 274 174 260 124  71 194 178 212 116
 [3709] 182 253 142 124 137 186 146  85 188 121 273 145 124 123 123 181 187 140
 [3727] 125 274 122 130 129 133 164 274 130 122 129 231 171 282 138  55 252 126
 [3745] 222 188  60 131 133 130 276  72 119 218 186 133 155  76 124 133 195 182
 [3763] 119 124 116 128  73 217 275 134 199 282  85 124 193 122 197 129 129 219
 [3781] 186 198 321 181 252 119  79 138 209 199 232 138 182 271 208 180  72 134
 [3799] 125 195 274 274  79 166 123 177 138 125  67 276  78  65 128 119 137 122
 [3817] 292 224 139 188 181 220  60 134 260 196 122 124 100 323 198  61 217 206
 [3835]  72 152  97 121 124 276 118  72  53 254 178 282 218 218 322 197 282 123
 [3853] 155 122 276 145  69 274 119 281 129 131 196 145 276 266 193 186 189 199
 [3871] 178 219 157 275 121 130 130  60 274 275 142 121 123 136 145 105  56 295
 [3889] 199 238 130 133 282 202 126 117 205 133 204 139  84 282 124 176 274 276
 [3907] 180 275 219 140 122 197 182 120  72 131 113 148 124 125 117 188  72 120
 [3925]  71 146 274 276 264 171 195 139 124  67 128 217 154 211 188 124 200 229
 [3943] 140 124 120 220 276 141 129 176 198  67 244 219 276 203 208  72 118 276
 [3961] 201  61 124 220 124 199 133 322  73 206  63 136 117 145 140 124 132 271
 [3979] 136 120 115 119  79 192 270 129 164 254 140 163 140 123 130 124 130 296
 [3997] 196  89 124  94 224 122 256  67  61 188 220 322 203 274 225  83  53 115
 [4015] 205 140 140  62 163 124 185 120 143 133 282  77 123 171  54 195 123 186
 [4033] 137 111 122 187 133 287  75 148 201 132  93  59 123 124 322 322 190 281
 [4051] 124 123  69 144 142 124 124 128 274 127 177 276 196 129 142 149 251 112
 [4069] 124 276 274 275 333 100  75 126 133 293  52  76 106 126 119 188  68 134
 [4087] 201 145 253 202 282 202 282 291 186 132 294 130 124 164 142  61 216 137
 [4105] 181 175 285 199 124 275 276  73 140 130 137 196 294 128 129 152 274 124
 [4123] 193 122 135 276 116 242 119 188 266 195 113 276 176 260  66 139 133  71
 [4141] 286 111 214 259 199 128 193  67 119 154 137 312 125 261  61 161 199 138
 [4159] 122 124  54 256  76 208 205 265 193 132 237 198 322 127 193 179 124 276
 [4177]  77 282 276 199 154 122 143 120  61 278 276 189 123  59 123 294 220  90
 [4195] 133 248 204 142 215 327 212 276 276 106 193 230 184 294 260 114 276 187
 [4213] 178 133 147 116 139  69 183 185 122 144 179 123 276 206 121 136 134 123
 [4231] 217 276 273 144 187 276 198 139 124 170 144 121 186 280 275 115 188 282
 [4249] 122 124 220 120 196 199 124 199 226 121 124 186 259 166 226 171 232 184
 [4267] 274 185 282  91 179 226 205  81 185 263 274 281  67 149 146 208 106 180
 [4285] 194 199 121 118 130 134 213 122  78 196 188 138 110 120 129 276 154 128
 [4303] 260 238 196  76 196 358 123 295 122 124 123  70 210 242 113 194 124 124
 [4321] 219 276 149 237 133 195 211  69 210 191 282  76 199 205 122 321  64 180
 [4339] 224 146 194 188 123 122 131 282 321 133 321 123 115 133  66 155 273  67
 [4357] 135 276 122 122 122 196 275 274 111 322 114 220 193  61 132 146 175 282
 [4375]  91 124 198 274 144 124  60 311 123 160 136 196 328 119 276 155 217 344
 [4393] 282 119 121 188 193  62 199 134 128 193 201  71 111 134 138 196 205 124
 [4411]  55 248 188  71 200 182  76 117  67 132 153  70  72  81 124  81 130 186
 [4429] 330 322  67 128 280 280 123 143 136 196 130 124 275  79 129 328 191 142
 [4447] 227 276  72 201 122 126 188 194 152 138 149 149 224 197 135 123 122 138
 [4465] 127 276 133  63 128 196 331 207 103 122 118 177 197 201 122 282 196 120
 [4483] 124 132 133 172 126 327 144 276 192  64 275 198 137 284 295 188  64 177
 [4501] 263 171 195 196 118 121  65 123 186 188 123 124  67 114 164  77  73 124
 [4519]  55 227 124  85 128 126 125 159 149 120  91 194 143 322 220  79 120 199
 [4537] 128 276 294 150 142 282 134 321 322  65  55 183 276 302 180 138 134 176
 [4555] 188 106 134 122 148 205 276 314 124 276 130 199 164 140 166 195 247  78
 [4573] 276 220 123 149 188 122 119 192 134 178 183 194 100 136 109 187 105 124
 [4591] 139 122 148 186 174 276 220 159 124 141 124 195 322  81 198 138  81 143
 [4609] 204 276 140  98 165 199 139 219 119 322 149 232 286 116 123  67 282 125
 [4627] 117 124 116 139 236 276 199 122 276 194 198 220 115 130 273 124 213 117
 [4645]  90 201 280 133  79 201 276 117 199 124 319 133  66 185 124 124 242 205
 [4663] 121 276 276  55 118 291 199 138 175 124 116 174 118 119 124 319 201 165
 [4681] 138 276 328 135 117 134 124 203 167 134 129 199 206 217 210 122 181  71
 [4699] 215 187 226 195 178  68 220 194 267 167 199 127  72  72  79 113 196  69
 [4717] 106 214  82 188  65 220 124 220  84 133 129 199 194 118 117 176  55 185
 [4735]  63 168 145 282 140 142 113 138 118 210 214 124 178  70  64 152 282  66
 [4753] 198 134 193 140 140 276 127 165 274 276 113  82 213 189 275 198 129  79
 [4771] 196 134  84 292 171 121 151 135 165 134 118 122  60 193 213 195 122 121
 [4789]  72 103 140 248 238 276 205 146 133 128 292 128 282  83 275  67 180 120
 [4807] 119  54 196 188 121 226 194  61 207 138 295 119 181 193 149 118 157 125
 [4825] 201 198 189 126 193 246 173 272 199 117  81 126 140 216 134 121 119 262
 [4843] 121  63  60 131 276  65 225  66 201 204 125 115 175  66 192 151 144 276
 [4861] 237 169 108 260 133 111 134 180 194 276 322 190 220 276 137 130 220 166
 [4879] 178 321 119 192 140  55 186  60 276 100  82 134  70 305 140 231 224 218
 [4897] 186  67 186  76 269 232 117 226 230 139 121 276  80 276  82 187 131 226
 [4915] 136 305  57 139 146 137 219  70 124 121 128 121 134 139 134 275 204 126
 [4933] 134 128  76 124 287 128 117 326 276 132 122 123 287 199 119 196 304 112
 [4951] 188  95 262 282  72 129 192 220 139 208 131 121 123 197 128 310 131 282
 [4969] 120 132 194 117 136 182 220 251 127 171 161 132 274 201 126 261 161 201
 [4987] 106 187 124  70 158  73 195  90  65 145 124 134 276 182 204  90 143 140
 [5005] 193  64 168 139 139 122 128 139 112 276  64 106 219 122 132 116 173 118
 [5023] 114 163 198 123 137 276 132 149 204 192 133 134 148 131 130 220 127 125
 [5041] 276 114 322 306 174 132 276 202 187  61 147  61 125 186 199  55  70 235
 [5059]  62 275 276 111 215 120 333 131  69 133  70 192 218 276 322  61 157 198
 [5077] 322 118 199 188 275 173  82 126 220 220 305 322 201 117 275  66 135  85
 [5095] 118 328 322 282 212 279 201 144 129  69 282 137 121 276  76 152 142 156
 [5113] 192 308 321 149 139 220 187 125  60 185 276  79 127 134 120 322 134 204
 [5131] 276 121 117 217  84 216 130  63 125 281 276  55  70 197 181  69  75 276
 [5149] 200 145 218  70 187 325 203 246 203  54 127 220 178 199 175  69 139 193
 [5167] 276 215 105 220 105 130 120 188 199 264 275 112  67 130 233 130 177 131
 [5185] 135 274 188 132 164  67 194 113  61 123 219 325 297 216 120 176  64 128
 [5203] 183  68 148 119 232 127 140 116 203 124 276  55 192 119 136 122  52 128
 [5221] 207 320 122 203 147  77 176 205 178 125 196 220 274 129 134 219 216 244
 [5239] 207 276 275  96 166 276 176 131 134  93 122  67 124 209 186 119 179  67
 [5257] 124 106 125 218 134 130  89  78 135 276 274 195 146 125 138 200  79 246
 [5275]  67 285 271 117 150  67  73  61 126 177  73 110 276 121 176 280 250 123
 [5293] 276 282 307 171 276 128  79 174 134 296 328 128  72 124 130 122 214 274
 [5311] 312 162 125 157 194 215 206  90 321 224 119 187 166 183 276 131 141 113
 [5329] 207 118  61 181 149 197 162 274 134 133 190  71 191  63 121 144 321 119
 [5347] 130 117  67 121 190 318 180 188 265 219 117 228 134 162 208  68  65 126
 [5365] 128 235 230 131 276 127 274 128 230 118 276 202 252  61 282 205 157 121
 [5383]  70 328 114 127 186 135 148  67 226  82 125 221 218 120 200 201 133 156
 [5401] 192 209 116 195 180  54 276 164 146 195 179 194 119 224 216  73 276 276
 [5419] 200  55 225 199 123 281 135 171 322 276 170 201  67 116 108 226 111 187
 [5437]  58 202 186 276 139 125 154 276 119 127 151  77 205 322 123 275 194 116
 [5455] 231 157  71 123 155 184  65 333 282 276  61 116  77 273 140 141 131 276
 [5473] 116 132 322  89 241 212 145  70 131 276 125 185 139 274 282 276  70 112
 [5491] 134 136 131 219 131 196 213 274 128 128 273 322  55 182 114 180 189 274
 [5509] 127 166 170  64 187  64 274 176  77 174 123 204 182 280 136 177 125 274
 [5527] 134 215 142 134 225 220 276 135 199 196 115 202 131 190 194 184 151 134
 [5545]  64 196 141 122 148  73 107 213  89  74 304 128 322 127 122 133 166 131
 [5563] 219  69 276 322 119 276 139 220 193  61 188 131 276 116 202 108 140 197
 [5581] 282  88 201 275 134 198 210 126 126 182 117 217 137 320 218 295 117 194
 [5599] 134  66 144 190 177 126 201 188 205 218  64 172 257  63 157  67 162 127
 [5617] 122 114 118  71 118 139 282 296 147 133 100 132 195 133  64 143 142 275
 [5635] 117 186 197 133 104 179 117 123 137  78 161 188 126 149  94 282 177 276
 [5653] 136 122 136 202 133 208 254  77 194 220 100 205  73 137 206  56 131 208
 [5671] 132  67 115 133 127 289 276 124  79  75  64 282 213 134 238 322 106 132
 [5689] 167 124  64 135 158 108 223 125 125 214  71 137  66 131 217 302  63 131
 [5707] 145 200 120 333  67 246  96 327 140 189 226 252  64 141 115 175 118  73
 [5725] 177 157  83 188 304 181 135 246 124 189 287 195 282 192 119 141 236  61
 [5743] 157 116 134 130 276 302 133 134  71 213 128 221 206 129 128 314  70 188
 [5761] 181 276 202  55 214  73 126 166 144 171 134 272 270 319  67 125 140 129
 [5779] 119 219 121 118 199 276 111 214 201 151 195  61  61 186  78 210  55 128
 [5797] 132  61 131 188  69  61 140 194 118 119 124 224 284 171 139 282 165 224
 [5815]  82 140 220 121 127 131 124 146 220 291 144 132 192 202 197 188 264 211
 [5833] 234 140 128 190 140 132 195 132 110  61 100 134 276 213 188 211  69 119
 [5851]  65 282 276 172 117 146 182 228 198 276  72 120 276 139 134 276 164 123
 [5869] 135 177  70 263 114 276 276 116  68 322 264 219 282 165 141 219 143 220
 [5887]  67 191 270 183 155 276 195 276 190 328  94  67 117 123 113 112 195 276
 [5905]  62 139  57 195  59 121  83 130 119 146  69 254 282 220  70  56 224 125
 [5923] 143 133  60 180 187 276  55  78 220 285 196 306 220  90  58 126 146 156
 [5941] 244 123 125 134 139 216 114 124 193 117 188 106 157 112 208 140 181 192
 [5959] 275 134 258 124 264 196 213 118 123 276 134 218  76 124 254 214 285 219
 [5977] 139 210 128  72 195 147 275 205 116 288 201 122 132  73 276 147 200 274
 [5995] 128  81 133 124 131 149 282 127 137 155 177  78 146 119 111 117 111 167
 [6013] 322 199 146 142 274  78 226 146 202 201 199 136 135 140 120  65 133 137
 [6031] 143 286 108 239  53  64  73 144 220  95  92 216  71  67 111 171 296 272
 [6049] 275 304  64 276 132 121  60 129 122 153 115 194 219 115 261  73 125 135
 [6067] 125 192 122 140 134 223 273 168 122 144 296 270 276 161 274 210 145  78
 [6085] 243 276 282 138 181 195 215 196 264 223 321  71 276 205 197 124 123 215
 [6103] 276 194 275 125 122 276 305  70 175 282 212 123  70 177 157 263 122 139
 [6121] 135 276 275 173 273 134 227 274  83 274 123 119 171 132 138 137 128 153
 [6139]  73 117 322 276  78 177 117 276 276 129 203 196  62 203 274 263 118 112
 [6157] 168 131 143 175 106  61  88 122 192 224 218 126 123 214 177 230 118 188
 [6175]  70  73 132 142 254 327 117 193 270 295  70 217 302 125 118 194 126 142
 [6193] 154 140 193  65 123 150 123 128 138  97  61 116  67 220 194  61  86 328
 [6211] 132 202 118 276 276 203 172  84 129 121 291 158  65 140 123 184 202 182
 [6229] 132 118 124 134 276  99 193 190 127 136 275 131  82 123  73  78 218 276
 [6247] 156 104 276 143 183  93 126  53  61 137 100 123 246 128 181 164 224 177
 [6265] 122 180  61 123 140 121  76 216  76  72 205 190 121 130 124 129 251 121
 [6283] 140 124 195 143 119 305 276 124 128 263 120 238  78 117 123 322 264 128
 [6301] 196 139 276 123 114  91 282 135  72 274 274 122 123 122 114 205 123 266
 [6319] 152 276 111 205 134 154 177 215 193 213 137 106 193 183 180 136 100 122
 [6337] 320 128 185 140 322 246 276 274 123 137 141 130 121 111 215 226 205 195
 [6355] 220 319 281 220 291  67 134 105 211 219 273  65 191 199  58  99 152  66
 [6373]  66 105 129 177  93 125 130 238 276 282 154  59 223  66 131 218 133 194
 [6391] 210 124 262  85 246 128 216 296 189  66 262 199 182 193 206 197  71 135
 [6409]  65 123  79 213 202 306 146 148 195 206 121 205 113 276  67  74 122 124
 [6427]  60 136 199 276 122 320 149 138 414 203 199 205 124 200 276 183 189 196
 [6445] 146 199 115 119 178  58 133 235 188 150 179 145 175 125 141  81 128 127
 [6463] 145 167 113 128 133  78  69 273 137 161  61 161 168 204 134 113 165 125
 [6481]  58  61 122 131 138 127 124 141 131 322 175  90 197 209 175  73 135 180
 [6499] 196 119  64  60 194 276 146 276 276 142 144  61  65 128 163 175  67  67
 [6517] 192 124 182 220 181  76 261 122 187 124 134 300 140 248  63  81 141 276
 [6535] 121 304 171 205 256 283 264  66 138 128  70 117 237 240 277 130 139 281
 [6553]  67 344  78  62 111  73  70 118 149 226 134 134 167  61 125 313  70 302
 [6571]  67 125 139 167 182 130 134 114  78 138 145 179 125  55  64 195  80 148
 [6589] 170 118 120 123 190  75 301 148 149 114 224 121 138 119  58  72  71 122
 [6607] 167 125 231 147 122 145 131 250 106 137 134  78 135  71 122 178 167  73
 [6625]  70 121 194  73 196 104 109  64 113 100  72 113 119 231 115  78 195  60
 [6643] 112 150 139 179 176  99 251  77  99  65 308 121 188 173 144  70 133 121
 [6661] 114 146  67 123 111 128 200 229 325  72 169 147 175 204 185  79  67 168
 [6679] 134 113 131 127 130 218  79 128 141 136 171 185 197  67 179 228 145 110
 [6697]  58 139  61 138 161  70 220 170 117 137  61 134  61 321 128 119  59 343
 [6715] 115 134 227 138  61 133  71 201 137 144 128  61 106 156 179 105  73 185
 [6733] 131 206 179  70  65 121 201 226 123  91 225 188 121 121 120 131 208 135
 [6751] 114 199 122 120 141  72 131  55 144  69 119 112 184 199  64 179 169  73
 [6769] 264 200 128  63  75  75  67 118 206 119  64 132 206 116 282 134 201 257
 [6787] 185  67 180 128 155 179  58 140 278 133 168 179  75 127 150 178  66 141
 [6805]  76 148 115 122 302 194 148 265 205 147 134 179 205  55 144 270  73 124
 [6823] 134 134 144  68 121 128 203  64 146 203 344  67 120 121  73  88 207 140
 [6841] 142 199  75 137 130 269 187 124 201 172  70 240 111  78 170 129 165 122
 [6859] 205  64 210  53  96 122 234  77 125 217 134 142 239 115 176  73  59 179
 [6877]  67 137 118 131  76  67 241 106 119 134 233 174  73  66  82 124  64 168
 [6895]  61  61 192 115  71 201 148 133 168 215 121 130  70 214 151 136  55 129
 [6913] 116  72  70  78 122 170 192 125 165 126  61 122 137  70 185 218 138 176
 [6931] 198 344 196  55 128 136  64 216 179 121 177 176 122 131  71 236 189 227
 [6949] 154  70  65 202 136 178  75 148 143 141 133  61 204 122  72  61 198 191
 [6967]  67 168 128 122 195 179 115 225  73 130 232 269 150 134 143 219  70 256
 [6985]  63 125 299 133 100 114  80 127 168 133 179  64 188 288 129 301 138 129
 [7003]  73 143  67 152 153 140 195 117 183 132 203 177  64 106 201 158  55 119
 [7021] 112 206 122 168 113 121 137  67 192 192 149 275  84 147 117  90 148  88
 [7039] 259 113 245 137 171  81 140  76  58 115 131 140  58 130  66  82 115 142
 [7057] 126 186 122 122 231 181  64 215 232 122 205  76 134 142 140 191  56 166
 [7075] 170 204 132 117 185 144 125  69 130 122 179 143  64 113  73 117 127 110
 [7093]  70 109  74 129 131  58  70 185 190 138  66 137 336 140  76 135 117 110
 [7111] 105 140 138 172 132 180 132 114 140 131 344 111 148 134  58 129  53 121
 [7129] 201 183 134 178 212 267 156 130 167  88  76 167 204 132 202 157 116 138
 [7147] 134 132 120  85 133  55  73  70 172  64 297 205 188 194 113 143 192 120
 [7165] 199  78 138 134 141 129  70  66  67  61 185  73  61 201 122 179 195  53
 [7183]  67 122 205  62 116  64 148  93 112 152 136 165 234 122 245 196  60 196
 [7201] 164 138  55 218 122 115 154 137 127 130 129  57 137  55 140  82  67 109
 [7219] 224  81 157 179 137  64 134 119 115 134 115 269  66 128  55 240 125 121
 [7237] 185 205 140 131  66 139 113 185  69 137 165 173 121  69 105 100 114  64
 [7255] 281 283 151 183 122 160 100 127 177 179  79 118  78  67 195 129 140 118
 [7273] 185 167 113 118 203 178 207 179 187 168  72  70 140 179 287 145 133 207
 [7291]  65 284 100 231  73 119 130 241 133  72 201 136 144 218 120  67 137 300
 [7309] 118 198  69 177 139  77 202 111 122 212 114 189 100  67 113 100 136  67
 [7327] 282  67 284 122 125 201 181 147 133 152 264 122  77 125  91 302 134 137
 [7345] 189 112 130 168 137  71  67 322 216 162  87 128 134  83  66 116  76  73
 [7363]  67  70  81 234 185 113  67 136 122 122 167  96 124 103 138  71 122 197
 [7381] 122  78 134 131 141 122 265  55 177  58  75 132 173 108 196 137 130  64
 [7399] 118 161 284 204 113 195 245 142 137  67 196 121 203 119  73  66  75 191
 [7417] 132  73  71  66  53 121  63 187  54  56 125 122 128 167 153 121 203 137
 [7435] 100 220 164 131 144 179 202 208 128 168  57 121 136  67 115 134 177 174
 [7453] 148  61 110  77  67 148 326 250 164 119  69 138 278  67 198 126 118 141
 [7471] 135 258  89  64 104 167 223 130  59 165 122 145 134 199 121 128 138  70
 [7489] 199 135 199 121 167 166 211  66 179 168 179  67  93  58 199  85 191 139
 [7507] 300  64 154 130 174  69 121 140 223 130  67  88 126 130  62  61  82 209
 [7525] 155  67 203 236 197  76  61 160 148  61 186 111  70 143 144 122 126 134
 [7543]  64 120 209  90 179 134 262 110 196 134 113 132 197 179  70  65 141 168
 [7561] 122 148 165 110 280  84  89 168 154 139 185  76 112 134  77 203 139  81
 [7579]  71 187 115 203 221 118  72 119 168 217 135  66 140 135 119 131 137 196
 [7597]  69 208  88 143  64 119 179 179  67 119 140 117  61 341 326 124 128 177
 [7615] 115 118 133  71  70 100 117 177 179  84 121  76 124  77  96 187 131  69
 [7633]  58 147 146 178 131 106 225 130  84 188 122 193  70 126  76 115 235 199
 [7651] 198 122 121 134 140  61 179 123 126  92 127  75 124 134 103 232 130 179
 [7669] 100 122 168  66 189 136 224 137 189  64 181  70 250 134 112 204 134 134
 [7687] 185 181 121 113 134  63 112 132 141  81 316  75 137 299 183 194 326 196
 [7705]  70  64  58 140 121 205 147 117 133 115  60 262  65 165 119  67 113 199
 [7723] 131 144 174 104 210 168 134 159  71 121  91  66 128 221 122  71  65 143
 [7741]  72 148 181  65  71 118  64 136 117 168 218 127 132 185 131 116 194 136
 [7759]  63  61 174 134 118 173  56 186 133 248 180 135 141  61  58 344 307 326
 [7777] 123 147 178 117 201 179 118 226 144 133  78 187 204  70 106 174 132 107
 [7795] 190 138 123 111 141 142 131 302  67 238  63 208 138 107 184 134 234  65
 [7813] 130 154 207 122 142 138 176 128 132  54 212 119 161 133  58 209 164 171
 [7831]  61 135  89 124 120 165 122 135 140 131  67 144 234 162 121 107 130 133
 [7849] 122  55  72  58 140 148  78  61 107  78 111 121 293  59 489 147 125 117
 [7867]  79 122 196 161 113  70  55  66 155 164 178  96 162 111 332 112  73 166
 [7885] 130 167 146  90 198 198 140  76 128 122 135 185 164  71  79  70 122 225
 [7903] 133 248 205 146 143  72 116 224 127 207 169 200  72 195 116 178 122 276
 [7921]  92  55 144 134 142 118 143 125 122  53 126 131 128  85 209 121 219 138
 [7939] 146 201  71  73 239 152 127 218 211 139 139 244 143 137 128 187  76  64
 [7957] 109 221 148 179 169  89 131  73 130 106 129 236  75 115  88 148  67 321
 [7975]  72 350 206 111 179  70  58 203 160 120 177 128  55 189 126 140 128 166
 [7993] 112  57 123  59 116 178 203 131 208  61 137 341 150 202  67 168 149 326
 [8011] 127 106 112 117  87 119 168 111 128 116  64 125 111  61 128 177 238 142
 [8029] 146 194 121  60 127 143 133  67 120 122 127 179 110  66 142 132 134 128
 [8047] 181 148 130 116  70 344 122 174 111 119 178  82  67 130 124 128 105  79
 [8065] 130 220 144 127  76 124  73  65 135 114 113  67 119  64 179  67 193 138
 [8083] 106 131 130 125 135 157 141 180  71  54 128 137  73 178 111 179 130 148
 [8101] 133 113 137 302 121 105 132 117 179 138 123 184 175  72  74 131  57 199
 [8119] 131 112  71  68 166 175  76 114 125 137 134 128 112  55  83  67 184 137
 [8137] 119 132 100 130  60  73  64 282  64 178 113  85  82 114 204  67 138 135
 [8155] 138  79  65  76 132  61 125 111 129  77  61 210 111 201 117 117 109  70
 [8173] 269 126 157 117 221 179 226 238 116 122 120 117 201 132 271 177 220  90
 [8191] 179 134 112 114 191 105 132 139 179  65 112 120 112 125 128  62 172  73
 [8209] 166 134 117  61  55  64 133 156 106 231 115 185 106  69 134 119 100 102
 [8227]  64 207  58  85 133 179 121 133  64 185 179 200 147 135  70 118 112 104
 [8245] 122 131 168 122 124 185 128  78 300 168  61  74 107 121 129 261 140  78
 [8263]  52  70 140 140  55 121 188  70  58 204  78 198 119  75 132  67  67  63
 [8281] 117 115 114  64 143  73 125 220 106  69 146  73 179  67  72 136  68  73
 [8299] 179 168 125 159 127 181 121  87 121 117  60 117 224 196 125  85  61 245
 [8317] 115 178 122 204  67 116  74 122 204 187 262 223 122 179  75 138 106 125
 [8335]  67 138 157 127 110  60 121  72  67  55  63 139 259 174 131 218 131 133
 [8353]  71 113 166 151 121 166 131 146  70 229  65 132 120  73 131 189 138 168
 [8371] 299 124 105 204 196 137  67 246 160 184 136 130 275 232 109 117  91 188
 [8389] 104  72 193 326 135 124 112 151 229  78  71 120 193  65 109 171  88 120
 [8407] 113 127 114 107  70 115 220 123 124 195  61 261 127 154  73  69 145  78
 [8425] 160 128 201 148 174 121  69 225 133  86 174 168 132 185 138 192 137 194
 [8443] 194 163 172 168 146 136 143 188 125 108 140  78 145 103 151 165  77  64
 [8461] 129 133  79 125 128 119 123 138 131 123 132 179 135  70 181 181 326 326
 [8479] 121 166 167 128 108  76 134 133 207 197 148 122 123 146  66 122  53 108
 [8497] 189 224 138  63 166 214  61  78  61 264 110  64 120 133 237 148 186  64
 [8515] 207  60  61 266  61 119 178  57 301 144  76 122 168 106 122 192 199  58
 [8533] 134 132 134 135 116 148 138 162 188  73 189 116 136 101 100 167 110 139
 [8551] 206 164 342  76 153 177 149 204  53 120 194 146 120  64 125 120  58  72
 [8569]  73 113 154 159 113 136 119 212 147  64  58  54 299 136  97  61 182 179
 [8587] 121 136 103  58 185  69 124 132 109 225 130  81 109 184 256 222 151 233
 [8605] 122  58  92 146 139 147 130  84 125  81 203 195  67  90  73 121  58 151
 [8623]  70 123 116 106 133 201 179 121  64  61  82 134 300 128  70 269 145 127
 [8641] 178 155 201 199 106 111 206 141 113 123 112  70 111 138 199 151 115 164
 [8659]  70 235  64 231 264  58 128 134 170 288 131 111  61 100 189 178 119 110
 [8677] 111 287  76 165  67  69 124  78 185 142  58 284  72 168 119 203  88 116
 [8695]  72  61 106 123  87 137 209  64 166 114 218 122 128  63 126 115 172  64
 [8713] 130  75 166  75  55 114 273 255 222 207 114 190 231 122  57 244 168 122
 [8731] 115 122 103  70 118 124 204 113  55 127 134 161 138 200 119 122 138 117
 [8749] 175 157 139 184 126 123 300 127 129  64 129 139 140 131 131 111  90 481
 [8767] 211  78 125 122 168 120 136 188 121 168 121 152  82 178  70  90 103  76
 [8785] 138  53 127 174  82 266  72 128 113 121 146 190 196 122 133 226  74 121
 [8803] 142 111 220 209 100 140 114 196 180 106 177 116 220 132 114 234 172 197
 [8821]  61 234 120 343 139 123 117 134 122  65 341 133  76 184 112 140 121 130
 [8839]  79 104 220 341 129 170 125 171  78 124 124 109  71 138 127 195 161 209
 [8857] 269  66 126 195 186 119  61  64 203  69  78 148 179 177 121 166 111 149
 [8875] 148 114  61  60 102  78 144 141 142 123 109  78 134  72  65 128 134 121
 [8893] 186 232 138 121 112  61 179 178 121 142  70 168 121  63  95  71 146 178
 [8911]  61  55 201 147 178 257 177  82  72 178 178 122  53  60 211 120  64 143
 [8929] 194 135  69 131 119 198 185 142 209 138  58 232 134 172 184 120 109 113
 [8947] 111 116 128 145 127 121 148 166 157 115 195 138 117 331 119 131 127 221
 [8965] 177 221  90 139  70 148  60 197 174 114  91 124 132 124 126  82 201 103
 [8983] 169 129 116 145 147 122 122 232 121 112  76 178  55 168 175 168 150 165
 [9001] 195 171 125 117 188 117  75 231 124 174 157 130  72 183 169 231 206 236
 [9019] 244 173 171 224  98  78 130 127  67 128 132 140 122  58 180 103 189 122
 [9037] 260 130 128 199 125 110 156 344  58 193 332 114  67 161 109 151 183 231
 [9055] 106 108 114 150 196 127 138 154 139  55 182 160 106 263 121 137 123 134
 [9073] 112 138 140 236 142 249 225 179 263 106 121  72 123 113 178 168 116 119
 [9091] 128 179 164 138 131 190 125 122 179 132  79 220 122 346 113 132 119 116
 [9109] 343 138 182 336 146 178 196 138 232 173 292  85 130 128 263 133 123 310
 [9127] 181 188 245  66 263 200 134 121 181 177  90  79 130 172 141 158 181 194
 [9145]  67  72 123 188 127 125  61 169 185 138 133 171 115  65  82 109 164  68
 [9163] 282 106 146 201 238  66 121  67 111 123 243 137  73 192 151  73  75 260
 [9181] 136 128  66 149 179 142 124 196 170 118  70 144 108  68 203 230 164 106
 [9199] 139 125 133 155 197 122  75 210 191 154 111 130 127 139 109 138 131 181
 [9217] 113 111  61 123 148 110 132 177  75 172 108 186 209 106  96 114 136 112
 [9235] 139 218 209 170 132 137  61  59 178  67 129 129 130 184 238 196  66 181
 [9253] 142 192 151 117 341 211 148 134 203 156 131 199 168  86 119  88 127 116
 [9271] 203 136 133  69 112 195 220 106 140 176 200 171  75 199 170  64 136 258
 [9289] 134 130 422 134 111  55  90 178 108 115 120 112 231  83 134 125 202 201
 [9307]  66 201 258 135 122 121 208  57 207 323 328 208 220  58 112 123 215 134
 [9325]  72 179 137 130  66 171 184 115 113 140 150 123  61 130 139 111  67 189
 [9343]  75 114  61 122  58 134 220 105 180 179 100 128  74 140 156 102 105  66
 [9361] 134 189  79  61 189 136 108 191 175 100  79  61 115 179 156 129  70 100
 [9379] 216  67 124 120 130 190  59 103 109 123 206 138 130 300 117 128  74 129
 [9397] 194 118 344 113 188 122 297 142 111  66 256 178  58  52 147 253 330 128
 [9415]  92 212 130 109 122  71 144 131 121 171 121 167 187 130 224 179  68 109
 [9433] 199 145 106 117 188 153 185 178 191 245 167 202  67 210 179  84 130 157
 [9451] 283  61 113 116 119 143 138 164 200 130 130 112 127  84 121 230  64 178
 [9469] 112 182  64 103 244  61 103 166 142 112 155 149 209 168 101 236 146  67
 [9487] 133  61 191 295  73 128 184 144 175 129 119 344 178  68 121 342 162 172
 [9505] 129 118 121 121 136  55 136 112 134 134  75 342 109 121 137 330 104 113
 [9523] 121 161 130  61 131 120 106  90 128  61 138 124 127 322 249 231 129 183
 [9541]  64 185 253 119 125 193 127 121 136 113 122 134  70  61 141 204 126 134
 [9559] 120 200  66 105 133 244 247 208 180 139 117 133 162 179 130 190  72  58
 [9577] 139 118 133 143 142 128 181 196 136 341 237 144 171 117  70  85 139 100
 [9595] 175 167 126 113  61 124  64 231 136 168 126 189  70 121 342 123 120 113
 [9613] 122 100 103 133 168  67 128  67 140 116 252  61 139 191 145 179 100  70
 [9631] 119 138 170 174 207 117 207 113 128 168 117  84 121 128  64 177 243 119
 [9649] 215 185 119 119 142 133 146 122  70 116 119 196  61 146  75  72 129 134
 [9667] 127 125 135 137  60 120 122 122 139  75 112 108 341 168  93 224 131 139
 [9685] 169 106  55  58  61 297 134 100 151 227  64 172 204 127 103  66 182 136
 [9703] 234 128 147 258  61  73 122 125  61 170 129 127 127 146  92 274  65 101
 [9721] 133 122 196  73 178 110 128 174 177  70  61  71 129 163 232  76 128 193
 [9739] 136 172 189  65 109 121 133 177  72  54  64  77  78 122 192 282  79 152
 [9757] 185 125 109 312 134  72 128 122 168 236 177 139 157 122 188 120  63 125
 [9775] 290 312 121 120 119 109  88 136 232 118  80 129 129  78 297 130 136 248
 [9793] 113 172 295 116 140 142 185 256 115 103 120 154 208 166 134 218 121 119
 [9811] 282 196 312 146 201 170 134 117  89 205 123 218 106 138  70 122  67 172
 [9829] 238 168 135 213 115 179  55 157 225 131 210  64  64 117  78 109  67  73
 [9847]  67 179  70 138 142 130  67  63 178 194 149 138 133 194 184 117 113 354
 [9865] 165 131 137 243  75 124 166 168 106 131 326 235 139 124 251 113  61 208
 [9883] 146  73  87 134 214 237 142  76 179 134  60 128 121 135  70  67 134  71
 [9901] 137  58 134 202 141 120 143 140 160 122 210  75  70 191 146  57  71 218
 [9919] 146 116 155 243 131 135 209  64 137 138 146 146  98 196 198 214  99 130
 [9937] 229 185 196  86  94 200  69 194 186  88  77 132 151 117 119  69  67 247
 [9955] 192 122 172  55 131 216 111  72 138 225 136 193 140 120  61  69  76  65
 [9973] 131  53 133  67  67 126 332 161 130 149 130 235 208 133 144 118 227 139
 [9991]  90  53 140 206 160  61 106 143  61 179

Back to Python now!

The easiest way to parse Twitter json is to use the module pandas and the read_json function.

  • This creates a data frame, which is our basic structure for all analysis.
In [30]:
import pandas as pd

json1 = pd.read_json("/home/cloud-user/Hackathon/brexit/data/continuous_rehydrated/rehydrated_000.jsonl",
                    lines = True, compression = "infer")
json1
Out[30]:
contributors coordinates created_at display_text_range entities extended_entities favorite_count favorited full_text geo ... quoted_status quoted_status_id quoted_status_id_str quoted_status_permalink retweet_count retweeted retweeted_status source truncated user
0 NaN None 2019-04-03 14:15:54 [0, 106] {'hashtags': [{'text': 'Brexit', 'indices': [7... {'media': [{'id': 1112761186645405696, 'id_str... 0 False RT @MrYogeshJoshi: If you only watch one video... None ... NaN NaN NaN NaN 6227 False {'created_at': 'Tue Apr 02 23:59:33 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 207561466, 'id_str': '207561466', 'name...
1 NaN None 2019-04-03 14:15:54 [0, 99] {'hashtags': [{'text': 'Brexit', 'indices': [4... NaN 0 False RT @stevedouble: Latest statement from me on #... None ... NaN NaN NaN NaN 55 False {'created_at': 'Wed Apr 03 10:06:33 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 4759364974, 'id_str': '4759364974', 'na...
2 NaN None 2019-04-03 14:15:55 [0, 140] {'hashtags': [{'text': 'Brexit', 'indices': [2... NaN 0 False RT @xavierbertrand: #Brexit : l’Union Européen... None ... NaN 1.113001e+18 1.113001e+18 {'url': 'https://t.co/QamlcPj2wD', 'expanded':... 29 False {'created_at': 'Tue Apr 02 11:12:59 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 717271293859610624, 'id_str': '71727129...
3 NaN None 2019-04-03 14:15:56 [0, 140] {'hashtags': [{'text': 'UKIPO', 'indices': [57... NaN 0 False RT @twobirdsIP: "Have we left the EU yet?" "Ho... None ... NaN NaN NaN NaN 7 False {'created_at': 'Wed Apr 03 14:13:12 +0000 2019... <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 1225716498, 'id_str': '1225716498', 'na...
4 NaN None 2019-04-03 14:15:56 [0, 225] {'hashtags': [{'text': 'Brexit', 'indices': [9... NaN 0 False Macron, Irish PM urge UK to propose alternativ... None ... NaN NaN NaN NaN 1 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 22794611, 'id_str': '22794611', 'name':...
5 NaN None 2019-04-03 14:15:57 [0, 19] {'hashtags': [{'text': 'Brexit', 'indices': [0... NaN 0 False #Brexit Apocalypse! https://t.co/5gKgicgcCS None ... {'created_at': 'Wed Apr 03 13:30:35 +0000 2019... 1.113434e+18 1.113434e+18 {'url': 'https://t.co/5gKgicgcCS', 'expanded':... 0 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 245278501, 'id_str': '245278501', 'name...
6 NaN None 2019-04-03 14:15:57 [0, 140] {'hashtags': [{'text': 'Brexit', 'indices': [9... NaN 0 False RT @BBCPolitics: "I'm absolutely appalled" - C... None ... NaN NaN NaN NaN 1501 False {'created_at': 'Wed Apr 03 10:15:56 +0000 2019... <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 40982779, 'id_str': '40982779', 'name':...
7 NaN None 2019-04-03 14:15:57 [24, 300] {'hashtags': [{'text': 'brexit', 'indices': [3... NaN 7 False @SteveBakerHW @Kilsally Steve you're a #brexit... None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 742684042756259840, 'id_str': '74268404...
8 NaN None 2019-04-03 14:15:58 [0, 270] {'hashtags': [{'text': 'snp', 'indices': [30, ... NaN 1 False I look forward to the day the #snp win a secon... None ... NaN NaN NaN NaN 1 False NaN <a href="http://twitter.com/download/iphone" r... False {'id': 1110886553348378624, 'id_str': '1110886...
9 NaN None 2019-04-03 14:15:58 [0, 140] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @GoodwinMJ: No Deal vs Remain by region:\n\... None ... NaN NaN NaN NaN 3677 False {'created_at': 'Wed Apr 03 13:35:00 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 116773758, 'id_str': '116773758', 'name...
10 NaN None 2019-04-03 14:15:58 [0, 280] {'hashtags': [{'text': 'USA', 'indices': [198,... NaN 0 False If anything happens to @jeremycorbyn this lady... None ... {'created_at': 'Wed Apr 03 13:06:29 +0000 2019... 1.113428e+18 1.113428e+18 {'url': 'https://t.co/GtF1jeWGTs', 'expanded':... 0 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 16960028, 'id_str': '16960028', 'name':...
11 NaN None 2019-04-03 14:15:58 [0, 140] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @GoodwinMJ: No Deal vs Remain by region:\n\... None ... NaN NaN NaN NaN 3677 False {'created_at': 'Wed Apr 03 13:35:00 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 375741517, 'id_str': '375741517', 'name...
12 NaN None 2019-04-03 14:15:59 [55, 300] {'hashtags': [{'text': 'brexit', 'indices': [2... NaN 0 False @EMK2017 @romkes3 @petervdalen @carolaschouten... None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com/download/iphone" r... False {'id': 51714250, 'id_str': '51714250', 'name':...
13 NaN None 2019-04-03 14:15:59 [0, 144] {'hashtags': [{'text': 'Brexit', 'indices': [6... NaN 0 False RT @Anna_Soubry: Here we go! Labour set to fac... None ... NaN 1.113424e+18 1.113424e+18 {'url': 'https://t.co/fxNqb32mD0', 'expanded':... 910 False {'created_at': 'Wed Apr 03 13:49:55 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 985875786296066048, 'id_str': '98587578...
14 NaN None 2019-04-03 14:16:00 [0, 140] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @ChukaUmunna: Er....over 2million young peo... None ... NaN 1.113350e+18 1.113350e+18 {'url': 'https://t.co/jg5AleErTv', 'expanded':... 835 False {'created_at': 'Wed Apr 03 08:03:01 +0000 2019... <a href="http://twitter.com/download/android" ... False {'id': 746680786087251968, 'id_str': '74668078...
15 NaN None 2019-04-03 14:16:02 [0, 143] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @CarolineLucas: May is sinking &amp; trying... None ... NaN NaN NaN NaN 2027 False {'created_at': 'Wed Apr 03 09:57:28 +0000 2019... <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 1027883199677038592, 'id_str': '1027883...
16 NaN None 2019-04-03 14:16:03 [0, 140] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @nickreeves9876: Freedom of Movement for Br... None ... NaN NaN NaN NaN 456 False {'created_at': 'Wed Apr 03 11:29:46 +0000 2019... <a href="https://wordpress.com/view/mybotanicg... False {'id': 1092800759517855745, 'id_str': '1092800...
17 NaN None 2019-04-03 14:16:03 [12, 141] {'hashtags': [{'text': 'brexit', 'indices': [2... NaN 0 False @MailOnline Chilling... #brexit could lead #th... None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 79761651, 'id_str': '79761651', 'name':...
18 NaN None 2019-04-03 14:16:03 [0, 140] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @GradySNP: The Scottish Parliament and Wels... None ... NaN NaN NaN NaN 54 False {'created_at': 'Wed Apr 03 14:06:22 +0000 2019... <a href="http://twitter.com/download/android" ... False {'id': 210546342, 'id_str': '210546342', 'name...
19 NaN None 2019-04-03 14:16:06 [0, 144] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @joannaccherry: I hope Corbyn won’t be fool... None ... NaN NaN NaN NaN 1355 False {'created_at': 'Wed Apr 03 08:44:42 +0000 2019... <a href="http://twitter.com/#!/download/ipad" ... False {'id': 1415311206, 'id_str': '1415311206', 'na...
20 NaN None 2019-04-03 14:16:07 [0, 101] {'hashtags': [{'text': 'Brexit', 'indices': [5... NaN 0 False And now we go live to Theresa May putting forw... None ... NaN 1.113202e+18 1.113202e+18 {'url': 'https://t.co/Nls5NmxCMm', 'expanded':... 0 False NaN <a href="http://twitter.com/download/android" ... False {'id': 198643649, 'id_str': '198643649', 'name...
21 NaN None 2019-04-03 14:16:07 [0, 140] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @EEAthina: Εάν το Ηνωμένο Βασίλειο είναι σε... None ... NaN 1.113426e+18 1.113426e+18 {'url': 'https://t.co/wBlUf4VnPT', 'expanded':... 7 False {'created_at': 'Wed Apr 03 13:31:09 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 3238514789, 'id_str': '3238514789', 'na...
22 NaN None 2019-04-03 14:16:08 [0, 169] {'hashtags': [{'text': 'Brexit', 'indices': [5... {'media': [{'id': 1113445071599407106, 'id_str... 0 False NEW BLOG: CCC Fellow Richard Parry discusses t... None ... NaN NaN NaN NaN 1 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 1280712997, 'id_str': '1280712997', 'na...
23 NaN None 2019-04-03 14:16:09 [0, 97] {'hashtags': [{'text': 'Brexit', 'indices': [9... NaN 0 False Does anyone know if there are any living relat... None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com/download/android" ... False {'id': 124003637, 'id_str': '124003637', 'name...
24 NaN None 2019-04-03 14:16:09 [0, 87] {'hashtags': [{'text': 'Brexit', 'indices': [5... {'media': [{'id': 1112973687119138816, 'id_str... 0 False RT @IamIllgner: Schon jetzt mein Lieblingsplak... None ... NaN NaN NaN NaN 736 False {'created_at': 'Tue Apr 02 07:03:01 +0000 2019... <a href="http://twitter.com/download/android" ... False {'id': 2867436890, 'id_str': '2867436890', 'na...
25 NaN None 2019-04-03 14:16:09 [0, 139] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @BWallArthur: Don't take the poison chalice... None ... NaN NaN NaN NaN 2 False {'created_at': 'Wed Apr 03 07:03:22 +0000 2019... <a href="http://twitter.com/download/android" ... False {'id': 880783584101109760, 'id_str': '88078358...
26 NaN None 2019-04-03 14:16:09 [0, 140] {'hashtags': [{'text': 'Brexit', 'indices': [1... NaN 0 False RT @guyverhofstadt: We cannot risk giving the ... None ... NaN NaN NaN NaN 2470 False {'created_at': 'Wed Apr 03 13:42:38 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 367693978, 'id_str': '367693978', 'name...
27 NaN None 2019-04-03 14:16:09 [0, 143] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @CarolineLucas: May is sinking &amp; trying... None ... NaN NaN NaN NaN 2027 False {'created_at': 'Wed Apr 03 09:57:28 +0000 2019... <a href="https://wordpress.com/view/mybotanicg... False {'id': 1092800759517855745, 'id_str': '1092800...
28 NaN None 2019-04-03 14:16:10 [0, 74] {'hashtags': [{'text': 'Brexit', 'indices': [0... {'media': [{'id': 1113445073394573312, 'id_str... 0 False #Brexit - Looks like no meaningful votes on Fr... None ... {'created_at': 'Wed Apr 03 14:08:32 +0000 2019... 1.113443e+18 1.113443e+18 {'url': 'https://t.co/Ba0wCpn4y9', 'expanded':... 0 False NaN <a href="https://about.twitter.com/products/tw... False {'id': 862768470072676352, 'id_str': '86276847...
29 NaN None 2019-04-03 14:16:10 [0, 214] {'hashtags': [{'text': 'brexit', 'indices': [2... NaN 0 False Welcome to the world of being a little fish be... None ... {'created_at': 'Wed Apr 03 14:11:53 +0000 2019... 1.113444e+18 1.113444e+18 {'url': 'https://t.co/I59S7FHQWG', 'expanded':... 0 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 904706298167664640, 'id_str': '90470629...
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
9970 NaN None 2019-03-21 09:45:36 [0, 204] {'hashtags': [{'text': 'Immobilier', 'indices'... NaN 0 False 📈🏘 #Immobilier - effet #Brexit : Les visites e... None ... NaN NaN NaN NaN 0 False NaN <a href="https://www.hootsuite.com" rel="nofol... False {'id': 1960875170, 'id_str': '1960875170', 'na...
9971 NaN None 2019-03-21 09:45:37 [15, 227] {'hashtags': [{'text': 'brexit', 'indices': [2... NaN 0 False @LeaveMnsLeave trouble is they already know wh... None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 465668774, 'id_str': '465668774', 'name...
9972 NaN None 2019-03-21 09:45:37 [0, 140] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @SDoughtyMP: No - we are tired of *you* Pri... None ... NaN NaN NaN NaN 1407 False {'created_at': 'Wed Mar 20 20:50:10 +0000 2019... <a href="http://twitter.com/download/android" ... False {'id': 4209823162, 'id_str': '4209823162', 'na...
9973 NaN None 2019-03-21 09:45:38 [0, 79] {'hashtags': [{'text': 'Brexit', 'indices': [0... NaN 0 False #Brexit is happening (allegedly), but do carry... None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 947153036874600448, 'id_str': '94715303...
9974 NaN None 2019-03-21 09:45:38 [0, 148] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @HMcEntee: Brussels bound this morning for ... None ... NaN NaN NaN NaN 17 False {'created_at': 'Thu Mar 21 09:33:28 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 1567967160, 'id_str': '1567967160', 'na...
9975 NaN None 2019-03-21 09:45:39 [15, 49] {'hashtags': [{'text': 'Brexit', 'indices': [3... NaN 0 False @MarcusArscott This is the one. ☝️ #Brexit #Owers None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com/download/iphone" r... False {'id': 891311954136113154, 'id_str': '89131195...
9976 NaN None 2019-03-21 09:45:40 [0, 179] {'hashtags': [{'text': 'Brexit', 'indices': [1... NaN 0 False Debata w sprawie #Brexit Podczas szczytu prze... None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 1468142268, 'id_str': '1468142268', 'na...
9977 NaN None 2019-03-21 09:45:41 [0, 140] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @TheDA_UK: "Hospitals across England are ex... None ... NaN NaN NaN NaN 17 False {'created_at': 'Wed Mar 20 21:20:13 +0000 2019... <a href="http://twitter.com/download/android" ... False {'id': 718488537222483970, 'id_str': '71848853...
9978 NaN None 2019-03-21 09:45:41 [0, 144] {'hashtags': [{'text': 'NoDeal', 'indices': [8... NaN 0 False RT @joannaccherry: Great clarity from @KeithBr... None ... NaN 1.108502e+18 1.108502e+18 {'url': 'https://t.co/PqGjRZU7eC', 'expanded':... 318 False {'created_at': 'Thu Mar 21 08:00:54 +0000 2019... <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 257858274, 'id_str': '257858274', 'name...
9979 NaN None 2019-03-21 09:45:42 [0, 140] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @TiarnanHeaney: So I’ve been issued with a ... None ... NaN NaN NaN NaN 42 False {'created_at': 'Wed Mar 20 09:52:46 +0000 2019... <a href="http://twitter.com/download/android" ... False {'id': 159095242, 'id_str': '159095242', 'name...
9980 NaN None 2019-03-21 09:45:42 [0, 144] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @joannaccherry: It seems @theresa_may conte... None ... NaN NaN NaN NaN 1632 False {'created_at': 'Wed Mar 20 20:48:34 +0000 2019... <a href="http://twitter.com/download/android" ... False {'id': 1524557300, 'id_str': '1524557300', 'na...
9981 NaN None 2019-03-21 09:45:43 [0, 140] {'hashtags': [{'text': 'Brexit', 'indices': [3... NaN 0 False RT @MarkFoxNews: As we head to #Brexit or #NoB... None ... NaN NaN NaN NaN 3 False {'created_at': 'Tue Mar 19 23:22:44 +0000 2019... <a href="https://mobile.twitter.com" rel="nofo... False {'id': 323278621, 'id_str': '323278621', 'name...
9982 NaN None 2019-03-21 09:45:43 [0, 53] {'hashtags': [{'text': 'Brexit', 'indices': [2... NaN 0 False I WISH HE WOULD OPPOSE #Brexit!\n\nthat's it, ... None ... {'created_at': 'Wed Mar 20 19:51:13 +0000 2019... 1.108456e+18 1.108456e+18 {'url': 'https://t.co/9Ou6gI4Vwn', 'expanded':... 0 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 3172937751, 'id_str': '3172937751', 'na...
9983 NaN None 2019-03-21 09:45:43 [0, 105] {'hashtags': [{'text': 'Barclays', 'indices': ... {'media': [{'id': 1108663945747927040, 'id_str... 0 False RT @jonbrenchley1: #Barclays #Brexit clinic at... None ... NaN NaN NaN NaN 2 False {'created_at': 'Thu Mar 21 09:37:38 +0000 2019... <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 918837926993301505, 'id_str': '91883792...
9984 NaN None 2019-03-21 09:45:45 [0, 140] {'hashtags': [{'text': 'Brexit', 'indices': [1... NaN 0 False RT @TheDrum: With the situation constantly cha... None ... NaN NaN NaN NaN 9 False {'created_at': 'Thu Mar 21 09:45:04 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 153799870, 'id_str': '153799870', 'name...
9985 NaN None 2019-03-21 09:45:45 [0, 140] {'hashtags': [{'text': 'brexit', 'indices': [9... NaN 0 False RT @CamCavendish: @JohnnyMercerUK Johnny do yo... None ... NaN NaN NaN NaN 35 False {'created_at': 'Thu Mar 21 09:18:46 +0000 2019... <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 1061306634167836672, 'id_str': '1061306...
9986 NaN None 2019-03-21 09:45:45 [0, 140] {'hashtags': [{'text': 'Brexit', 'indices': [6... NaN 0 False RT @ChrisSaintyFCO: A message for British nati... None ... NaN NaN NaN NaN 3 False {'created_at': 'Sat Mar 16 09:07:24 +0000 2019... <a href="http://twitter.com/download/android" ... False {'id': 1068790989752598528, 'id_str': '1068790...
9987 NaN None 2019-03-21 09:45:46 [0, 139] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @cpeedell: Appalled that Theresa May is pit... None ... NaN NaN NaN NaN 100 False {'created_at': 'Thu Mar 21 07:06:26 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 580175227, 'id_str': '580175227', 'name...
9988 NaN None 2019-03-21 09:45:47 [0, 140] {'hashtags': [{'text': 'UK', 'indices': [18, 2... NaN 0 False RT @apostolos_kl: #UK: Housing Market Update M... None ... NaN NaN NaN NaN 1 False {'created_at': 'Thu Mar 14 14:12:44 +0000 2019... <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 345850789, 'id_str': '345850789', 'name...
9989 NaN None 2019-03-21 09:45:47 [0, 137] {'hashtags': [], 'symbols': [], 'user_mentions... NaN 0 False RT @DancingTheMind: Want Theresa May to hear y... None ... NaN NaN NaN NaN 955 False {'created_at': 'Thu Mar 21 06:58:30 +0000 2019... <a href="http://twitter.com/download/android" ... False {'id': 117437870, 'id_str': '117437870', 'name...
9990 NaN None 2019-03-21 09:45:47 [12, 176] {'hashtags': [{'text': 'brokenBritain', 'indic... NaN 5 False @wmarybeard thank you Mary. . . hope you'll be... None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 2522923753, 'id_str': '2522923753', 'na...
9991 NaN None 2019-03-21 09:45:47 [0, 269] {'hashtags': [{'text': 'Brexit', 'indices': [9... NaN 0 False Though moderate Brexiteers have some valid arg... None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com/download/iphone" r... False {'id': 786452919457505280, 'id_str': '78645291...
9992 NaN None 2019-03-21 09:45:48 [0, 199] {'hashtags': [{'text': 'RevokeArticle50', 'ind... NaN 0 False Almost 650,000 signatures under 24 hours. But ... None ... {'created_at': 'Wed Mar 20 22:44:05 +0000 2019... 1.108499e+18 1.108499e+18 {'url': 'https://t.co/hoxYsmRoSq', 'expanded':... 0 False NaN <a href="http://twitter.com/download/android" ... False {'id': 851612454001967107, 'id_str': '85161245...
9993 NaN None 2019-03-21 09:45:49 [0, 83] {'hashtags': [{'text': 'Brexit', 'indices': [1... NaN 0 False RT @davcarretta: #Brexit: come Corbyn nessuno.... None ... NaN 1.108620e+18 1.108620e+18 {'url': 'https://t.co/FwkUf0ZzXC', 'expanded':... 4 False {'created_at': 'Thu Mar 21 07:04:35 +0000 2019... <a href="http://twitter.com/download/iphone" r... False {'id': 422844048, 'id_str': '422844048', 'name...
9994 NaN None 2019-03-21 09:45:51 [0, 111] {'hashtags': [{'text': 'Brexit', 'indices': [9... NaN 4 False Now at 642,000!!! Keep it up everyone! Share, ... None ... {'created_at': 'Thu Mar 21 07:34:43 +0000 2019... 1.108633e+18 1.108633e+18 {'url': 'https://t.co/QbtJynp0W2', 'expanded':... 1 False NaN <a href="http://twitter.com/download/android" ... False {'id': 130429479, 'id_str': '130429479', 'name...
9995 NaN None 2019-03-21 09:45:51 [0, 200] {'hashtags': [{'text': 'Brexit', 'indices': [1... NaN 0 False Regardless of any petition, there is no way Pa... None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 1095036938577432576, 'id_str': '1095036...
9996 NaN None 2019-03-21 09:45:51 [0, 23] {'hashtags': [{'text': 'brexit', 'indices': [1... {'media': [{'id': 1108666010817712128, 'id_str... 0 False Ha! Convenient. #brexit https://t.co/341ZGH4iHf None ... NaN NaN NaN NaN 0 False NaN <a href="http://twitter.com/download/android" ... False {'id': 987745652, 'id_str': '987745652', 'name...
9997 NaN None 2019-03-21 09:45:52 [0, 140] {'hashtags': [{'text': 'brexit', 'indices': [2... NaN 0 False RT @iwasleeg: My only real #brexit prediction ... None ... NaN NaN NaN NaN 6 False {'created_at': 'Wed Mar 20 15:42:36 +0000 2019... <a href="http://twitter.com/#!/download/ipad" ... False {'id': 9596232, 'id_str': '9596232', 'name': '...
9998 NaN None 2019-03-21 09:45:52 [0, 121] {'hashtags': [{'text': 'Brexit', 'indices': [7... NaN 17 False I know #Brexit is a bizarre spectacle. But jus... None ... NaN NaN NaN NaN 6 False NaN <a href="http://twitter.com" rel="nofollow">Tw... False {'id': 160687830, 'id_str': '160687830', 'name...
9999 NaN None 2019-03-21 09:45:52 [0, 140] {'hashtags': [{'text': 'Brexit', 'indices': [4... NaN 0 False RT @freeWorld2: German TV unfolds the whole #B... None ... NaN NaN NaN NaN 3796 False {'created_at': 'Tue Mar 19 20:47:00 +0000 2019... <a href="http://twitter.com/download/android" ... False {'id': 789361196, 'id_str': '789361196', 'name...

10000 rows × 31 columns

To get the nested json, we use the json_normalize function.

Then we can iterate to get the values we want.

In [31]:
from pandas.io.json import json_normalize

entities = json_normalize(json1["entities"])

This shows the hashtags in each tweet, or for retweets, the hashtags that are in the first 140 characters of text.

In [181]:
for i,x in entities.iterrows():
    print([y["text"] for y in x["hashtags"]])
        
['Brexit']
['Brexit', 'Cornwall']
['Brexit']
['UKIPO']
['Brexit', 'UK', 'EU', 'Scotland', 'NI', 'Wales', 'England', 'Ireland', 'voters', 'politics', 'workers', 'economy', 'trade', 'finance', 'markets', 'investors']
['Brexit']
['Brexit']
['brexit', 'Conservatives', 'leave']
['snp', 'indyref2', 'popcorn', 'BrexitBetrayal', 'brexit']
[]
['USA', 'Brexit']
[]
['brexit']
['Brexit']
[]
[]
[]
['brexit', 'theresaMay', 'May']
[]
[]
['Brexit']
[]
['Brexit', 'EuropeanParliament']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['brexit', 'WTO']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'EPlenary']
['Brexit']
['Brexit']
['Corbyn', 'TheresaMay', 'Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['European', 'British', 'UnitedKingdom', 'Brexit', 'JeremyCorbyn', 'TheresaMay', 'Scotland', 'Ireland', 'Euro']
['Brexit']
['Brexit', 'UK', 'EU']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit', 'UK', 'WithdrawalAgreement']
['Brexit']
['brexitstorm', 'Brexit']
[]
['Schengen']
['British']
['Barnier']
['Brexit']
['Brexit', 'Juncker']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit', 'Tee', 'GreatBritain', 'Unterhaus', 'EU']
['Brexit']
['Brexit']
['Brexit']
['Labour', 'Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'TeamGB']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['NoDeal', 'Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
['Brexit']
[]
['Plymouth', 'Poole', 'Portsmouth', 'Dover', 'Brexit', 'Somerset', 'Devon', 'Plymouth', 'Torbay']
['settledstatus', 'Brexit']
['Brexit']
[]
['UKIP', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['brexit', 'Ebora', 'government', 'readers', 'books', 'ya', 'edenchronicles', 'fiction']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['brexit', 'Nottingham']
[]
['Brexit']
['Brexit']
[]
['election', 'remain', 'Brexit', 'FBPE', 'FirstPastThePost']
[]
['Brexit']
[]
[]
['Brexit']
['digitaleconomy', 'Brexit', 'DigitalIndex17']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['FinalSay']
[]
['Brexit']
['Brexit']
['Brexit', 'UK', 'EU', 'Scotland', 'NI', 'Wales', 'England', 'Ireland', 'voters', 'politics', 'workers', 'economy', 'trade', 'finance', 'markets', 'investors']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit', 'UE']
['Brexit']
[]
[]
['brexit', 'loesje']
['Brexit']
[]
['Brexit']
['Brexit', 'BrexitBetrayal']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['leadership', 'LeadershipDevelopment', 'Cambridge', 'WednesdayWisdom', 'Brexit', 'PMQs']
['Brexit']
['Brexit']
['Brexit']
['Corbyn']
[]
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
[]
['Brexit']
['JacobReesMogg', 'AliceWeidel', 'Brexit', 'TheresaMay', 'BBC']
[]
[]
['brexit']
['Brexit']
['Brexit']
['FinalSay', 'Brexit']
['condemn', 'GBCommonwealth', 'Brunei']
[]
[]
['Brexit']
['Brexit']
['brexit']
['GraphicDesigner', 'graphic', 'design', 'need', 'photoshop', 'УралАрсенал', 'Brexit', 'indiedev', 'WednesdayWisdom', 'annefaber']
['NewportWest', 'Brexit']
['Brexit']
['Brexit']
['FinalSay']
['FinalSay']
['brexit']
['Brexit']
['Brexit', 'BrexitVote', 'PMQs']
['PeoplesVote']
['kitchen', 'brexit', 'GBBO']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit']
[]
['Metoo', 'metooindia', 'KalankTrailer', 'Peace', 'OperationColdWave', 'Brexit', 'CongressManifesto', 'Mahendran', 'CWC19', 'FunWithDC']
[]
['Brexit']
['Brexit']
['Brexit']
['PMQs', 'Brexit']
['Brexit', 'demusicaliseren']
[]
['Brexit']
['MPs', 'BrexitBetrayal', 'Brexit']
['Brexit']
['NeverForget', 'brexit']
['Brexit']
['brexit']
[]
[]
[]
['Brexit']
['Brexit']
[]
[]
[]
['Brexit']
['Brexit', 'BrexitBetrayal', 'MayMustGo', 'TreasonMay']
['ACTUALITÉS', 'Entrepreneurs', 'Brexit', 'CCI', 'Loiret', 'Europe', 'Export', 'Commerce']
['Brexit', 'PMQs', 'IndicativeVotes', 'IndicativeVotes2', 'Tory']
[]
['Brexit']
[]
['Brexit', 'PMQs']
['Brexit']
['UE', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit']
[]
[]
['Brexit']
['brexit']
[]
[]
[]
['UKIPO']
['Brexit']
['Brexit']
['Brexit']
['HMRC', 'HMTreasury', 'brexit', 'StopTheloancharge']
['Brexit']
['Brexit']
[]
[]
['Brexit', 'EU', 'PoliticalDeclaration']
['ICYMI', 'trade']
['Brexit', 'UK', 'EU', 'Scotland', 'NI', 'Wales', 'England', 'Ireland', 'voters', 'politics', 'workers', 'economy', 'trade', 'finance', 'markets', 'investors']
[]
['TheresaMayStatement', 'Brexit', 'JC4PM']
['Brexit']
['Brexit']
['FinalSay']
[]
['Brexit']
['Brexit']
['CommonSense', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['editorial', 'cartoon', 'brexit', 'privateeye', 'UK', 'satire']
['BrexitShambles', 'Brexit']
[]
['Brexit']
['EuropeanUnion', 'UK', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['JacobReesMogg', 'Brexit', 'AFD']
['EUCO', 'Brexit']
['FreedomOfMovement', 'Brexit']
['Brexit']
[]
['Brexit']
['Corbyn', 'Brexit']
['Brexit']
[]
['Brexit', 'April12', 'WithdrawalAgreement', 'BrexitDeal', 'Corbyn', 'LabourParty', 'TheresaMay']
['Brexit']
[]
['brexit']
[]
[]
['Brexit']
['Labour']
[]
['UKIPO', 'Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
[]
['eplenary', 'brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit', 'UK']
['Brexit', 'LoanChargeDelay']
[]
[]
['UKIP', 'Brexit']
['brexit']
['Brexit']
['brexit']
['aschfordslaw', 'stateless', 'articles', 'london', 'immigration', 'brexit', 'laws']
['Labour', 'Brexit']
[]
['Brexit']
[]
[]
['GovernmentofOccupation']
['brexit', 'NoDeal']
['Brexit']
['FinalSay']
[]
[]
['Brexit']
['Brexit', 'lewiscaroll']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
[]
[]
[]
['Brexit']
['GoWTO', 'Brexit']
[]
[]
['Brexit']
[]
['environment', 'BRexit', 'UK', 'Wales']
['Brexit']
[]
['Brexit', 'BrexitChaos', 'brexitart', 'artwork', 'artlover']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['BrexitCost', 'NoDealBrexit', 'Brexit']
['Brexit']
['johnathonpie', 'BrexitShambles', 'Brexit', 'ladbible', 'NoToRacism', 'richarddawkins', 'frankieboyle', 'strongandstable']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['British']
[]
['Brexit']
[]
[]
['NewportWest', 'Brexit']
['TheresaMayStatement', 'Brexit', 'JC4PM']
['ItsNotTooLate', 'MAGA']
[]
['UK', 'Brexit', 'EU']
['brexit', 'EU', 'nexit']
['Brexit']
[]
[]
['Brexit']
['LabourAntisemitism', 'ALEXJONES', 'INFOWARS', 'NEWSWARS', 'Brexit']
[]
['Brexit']
['Brexit', 'LoanChargeDelay']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit', 'ukpoverty']
['Brexit']
['Brexit', 'BrexitBetrayal', 'BrexitShambles', 'NoDealBrexit12April']
['NewportWest', 'Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['EU', 'UK']
[]
['PeoplesVote', 'brexit']
['Brexit']
[]
['brexit']
['Brexit']
['pymes', 'Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'LoanChargeDelay']
['Brexit', 'BrexitBetrayal', 'VoteUKIP', 'VoteThemOut', 'WTOBrexit', 'LeaveMeansLeave', 'LeaveEU']
[]
[]
[]
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Frexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'pleasestayuk']
['Brexit']
[]
[]
['Brexit']
[]
['SNP', 'PMQs', 'Brexit']
['brexit']
[]
['Brexit', 'Brexit']
['Brexit']
['Brexitmadness', 'Brexit']
['brexit', 'pmqs']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit', 'StandUp4Brexit', 'BrexitBetrayal']
[]
['Brexit']
['FaithGoldy', 'JarodTaylor', 'EU', 'EUdictators', 'Brexit']
['Brexit']
['Brexit', 'Frexit']
['Brexit']
[]
['Brexit']
['Matosinhos', 'Livre', 'Portugal', 'PEV', 'plástico', 'Bolsas', 'Brexit']
['brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit', 'StandUp4Brexit', 'BrexitBetrayal']
['Brexit']
['BritishArmy', 'Corbyn', 'JoCox']
[]
['Brexit']
['Brexit']
['Brexit']
['cartoon', 'Brexit', 'illustration']
['Brexit', 'innovation']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['fiskeri']
['Brexit']
['EuropeanParliament', 'brexiters', 'Brexit', 'RevokeArticle50', 'EUelections2019', 'StopBrexitSaveDemocracy']
[]
[]
[]
['Brexit']
[]
[]
[]
['Brexit', 'TheresaMay']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['British']
['Brexit']
['Brexit']
[]
['May', 'Corbyn', 'Brexit', 'Tories', 'Labour']
[]
['Brexit']
['brexit', 'bbc', 'brexiteer']
['brexit']
[]
['Brexit']
[]
['EU', 'ClimateChange']
[]
['Brexit']
['Brexit']
['FreedomOfMovement', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'Parliament', 'letwin']
[]
['Brexit']
['BrexitStorm', 'Brexitcast', 'Brexit', 'journalism']
['nodeal', 'Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['NoDealBrexit']
[]
[]
[]
[]
[]
['Brexit']
['Brexit']
['Brexit', 'Referendum']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Labour', 'Brexit', 'Corbyn']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'BrexitMayhem', 'malrotllo']
['RankedChoiceVoting']
['Brexit']
['May', 'Corbyn', 'Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit', 'NoDeal']
['Brexit']
['Brexit']
[]
[]
['Labour', 'Brexit']
[]
['brexit', 'WalkAway']
['brexit']
['Brexit', 'BlowJob']
['Brexit']
['Brexit']
['PeoplesVote', 'Brexit', 'RemainInTheEU', 'MayDeal', 'NoDeal', 'EU']
['Brexit', 'Cornwall']
['Brexit']
['Brexit']
['Brexit', 'LoanChargeDelay']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit', 'BrexitVote']
['Brexit']
['Brexit']
[]
['TimeToPrepare', 'orderly', 'Brexit', 'ChaoticFunctioning', 'Britain', 'BrexitDisaster', 'WednesdayWisdom', 'wednesdaythoughts', 'WednesdayMorning']
['Brexit']
[]
['Brexit']
['brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit', 'Remain', 'RevokeArticle50', 'News', 'Business', 'WednesdayWisdom', 'WednesdayMotivation', 'politics', 'bbcnews']
[]
['Brexit', 'BrexitVote', 'PMQs']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit', 'palladium']
['Brexit']
['brexit']
['Brexit']
[]
['British']
['Leeds', 'Brexit']
['Brexit']
[]
['Brexit']
[]
[]
['brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['UK', 'economics', 'forex', 'GBPUSD', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
['Brexit']
['Brexit', 'UK', 'EU']
['Brexit', 'BrexitShambles']
['Brexit']
['Brexit', 'WynnResorts', 'Fed', 'cryptos', 'Blackrock', 'HSBC', 'PonziScheme', 'Disney', 'IMF', 'Nissan', 'Ghosn', 'Lindberg', 'TheMasters', 'MarionHollins', 'blawg']
[]
['Bercow', 'speaker', 'Parliament', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'BrexitChaos', 'brexitart', 'artwork', 'artlover']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['visados']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
[]
[]
[]
['Brexit', 'NoDeal']
[]
[]
['Leeds', 'Brexit']
[]
[]
['Brexit']
[]
[]
['Brandenburg', 'Sachsen', 'SachsenAnhalt', 'Kohleausstieg']
['Corbyn', 'TheresaMayhem', 'BorisJohnson', 'Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit', 'PeoplesVote', 'RevokeArticle50']
[]
['Brexit']
['Brexit']
['EPlenary', 'Brexit']
['cdnpoli', 'uk', 'brexit']
['Brexit']
[]
[]
[]
[]
['Brexit']
[]
['Juncker', 'NoDeal', 'EuropeanUnion', 'Brexit']
['EU', 'UK', 'EU', 'Brexit', 'GetOnWithIt', 'LiveLine']
['Brexit']
['PMI', 'Brexit']
[]
['Brexit', 'UK', 'EU', 'Scotland', 'NI', 'Wales', 'England', 'Ireland', 'voters', 'politics', 'workers', 'economy', 'trade', 'finance', 'markets', 'investors', 'MPs', 'Parliament']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit', 'Prepare4Brexit', 'StopBrexit', 'PeoplesVote', 'BrexitCrisis']
[]
['Brexit']
['business', 'MINHYUN', 'Thailand', 'Brexit', 'PeaceonEarth']
['FinalSay']
['brexit']
[]
[]
[]
['Brexit']
['Brexit', 'DUP']
['Brexit']
['Brexit']
[]
['EU', 'Brexit']
['Brexit']
[]
['Schengen']
[]
[]
['Brexit']
[]
[]
['BrexitBetrayal', 'Brexit', 'PeoplesVote', 'TellThemAgain', 'LeaveMeansLeave', 'TraitorTheresa', 'TheBrexitParty']
['Brexit']
[]
[]
['Brexit']
['Labour', 'Brexit', 'Corbyn']
['UK']
['Brexit']
[]
[]
['Brexit']
[]
['Brexit', 'RemainInTheEU']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'PeoplesVote']
['brexit', 'NoDeal']
['Brexit']
['Brexit']
['Brexit']
[]
[]
[]
[]
['Brexit', 'UK', 'WithdrawalAgreement']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'May', 'Corbyn', 'Sprichwort']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Italy']
['Brexit']
['Brexit']
['Brexit', 'Labour', 'Tory', 'Brexit', 'Leave', 'GeneralElection', 'Labour', 'Tories']
[]
['NoDeal', 'Brexit', 'ERG', 'Tories']
['Brexit']
['brexit', 'drake', 'GotThatHipHop']
[]
['Brexit']
['Brexit']
[]
['PINGConference2019', 'Brexit', 'BAEPD']
[]
['Brexit']
[]
[]
['UK', 'Brexit', 'EU']
['brexit', 'UE']
[]
['EU', 'LEAVE', 'REMAIN', 'brexit', 'BrexitBetrayal']
['Brexit']
['Brexit']
[]
['brexit', 'Tories']
['brexitdivide', 'axewound', 'brexit']
[]
['Brexit']
['time', 'orderly', 'Brexit', 'chaotic', 'functioning', 'TheresaMay', 'government']
['Brexit']
['Brexit']
['Brexit', 'EU', 'PoliticalDeclaration']
['Brexit']
['Glasgowisgrande']
['BrexitShambles', 'TheresaMay', 'Brexit', 'Corbyn']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Taliban', 'Christian', 'Identity', 'Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'Afrika']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['brexit']
['Brexit']
[]
['UEA', 'politics', 'Brexit']
[]
[]
[]
['medicine', 'EU']
['Brexit']
['Brexit']
['Amazon', 'HMRC', 'HMTreasury']
[]
[]
['Brexit', 'Une']
[]
[]
['Juncker', 'WithdrawalAgreement', 'Brexit']
[]
['Brexit', 'Nexit', 'EU']
['BREXIT', 'eufunded', 'UoB', 'sponsored', 'clinicaltrials']
['Brexit']
['Brexit', 'PeoplesVote']
['Brexit']
['brexit']
['ERG', 'BrexitCrisis', 'Brexit']
['Brexit', 'GBPUSD', 'EURGBP']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Demons', 'Crimesagainstsociety']
['Brexit']
['Brexit']
['FinalSay']
['Brexit']
['Brexit', 'ReinoUnido', 'Europa']
['Brexit']
['Juncker', 'eurozpravycz', 'brexit', 'EU']
['Brexit', 'brexshit', 'brexcrement', 'BrexitShambles', 'MarkFrancois']
['Brexit']
['Brexit', 'British']
[]
[]
['Brexit']
[]
[]
['BREAKING', 'Wales', 'TheresaMay', 'Brexit', 'UK']
['May']
['Brexit']
['Brexit', 'deadlock', 'British', 'minister', 'NigelAdams', 'PrimeMinister', 'TheresaMay', 'Corbyn', 'Labour']
[]
['Brexit', 'brexitdebate', 'EU', 'ruse', 'ERG']
[]
['Brexit']
[]
[]
['Brexit']
[]
['Brexit', 'PeoplesVote', 'Betrayal']
['Brexit']
[]
[]
['PMQs', 'Brexit', 'leadership', 'LeadershipDevelopment']
['Brexit']
['Brexit']
['Labour', 'Brexit', 'PeoplesVote']
['Brexit']
['brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'Tajani', 'Europa']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
['politics', 'Brexit']
['Brexit']
[]
[]
['Brexit']
[]
['petitiontorevokearticle50']
[]
['ป้าเมย์', 'Brexit', 'GBPUSD', 'EURGBP']
[]
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'BrexitBetrayal', 'VoteUKIP', 'VoteThemOut', 'WTOBrexit', 'LeaveMeansLeave', 'LeaveEU']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'UE']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit', 'climatechange']
['Brexit']
['Brexit']
['TheresaMay', 'Brexit']
['Brexit']
['Brexit']
[]
['TheresaMayStatement', 'Brexit', 'JC4PM']
['Brexit']
['Brexit']
['Brexit', 'Morecambe', 'EdenNorth']
['Brexit']
['Brexit']
['brexit', 'catastrofuck']
['Brexit']
[]
['Brexit']
[]
['Leavers']
['Brexit']
['Brexit']
[]
['Brexit', 'BrexitChaos', 'brexitart', 'artwork', 'artlover']
['EU', 'Brexit']
['EU', 'European', 'Brexit', 'StopBrexit', 'BollocksToBrexit', 'RevokeArticle50', 'LoveEU']
[]
['brexit']
['Brexit', 'NoDealBrexit']
['NORD', 'Environnement', 'Brexit', 'PacteSAT', 'administration']
['2019LoanCharge']
['Brexit']
['Brexit']
[]
[]
[]
['Brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['BrexitBetrayal', 'Brexit']
[]
['Brexit']
['UE', 'Gibraltar', 'Brexit']
[]
[]
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit', 'GoWTO']
[]
['Conservatives', 'BREXIT']
['politics', 'Brexit', 'BrexitShambles']
['Ab', 'Brexit', 'Ab']
['shieldpay', 'shieldpayblog', 'brexit', 'smallbusiness']
['Brexit']
[]
['Italy', 'Brexit']
['Brexit']
['Brexit', 'douane']
[]
[]
['Brexit']
[]
['Brexit']
['PeoplesVote']
['Brexit']
['Nrexit']
[]
['EU', 'Brexit']
['ToryRacism', 'ToryIslamophobia', 'brexit', 'JC4PM']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit', 'Leave']
['Brexit']
[]
['NastyParty']
['Brexit']
[]
['CustomsUnion', 'Brexit']
['BREXIT', 'Queen', 'UnitedKingdom']
['NoDealBrexit']
['PeoplesVote']
['Jinek', 'Brexit', 'Europa']
['Brexit', 'BrexitBetrayal', 'brexitcoalition']
[]
['Brexit']
['Brexit']
['Brexit', 'BrexitChaos', 'brexitart', 'artwork', 'artlover']
['Brexit']
[]
['Brexit']
['Brexit']
['Article50']
['EU', 'Brexit']
['Brexit', 'UnionEuropéenne']
['Labour', 'Brexit', 'PeoplesVote']
['Brexit']
['Brexit']
[]
['Brexit']
['TheresaMay', 'report', 'Brexit', 'appelle', 'Corbyn', 'coopérer']
['Brexit']
['Brexit', 'LeaveMeansLeave', 'WTONow', 'LeaveEU', 'FishingForLeave', 'StandUp4Brexit', 'BritishArmy', 'Veterans', 'Military', 'RoyalNavy', 'RoyalAirForce']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['EU', 'Brexit']
['brexit']
['Brexit']
[]
['Brexit']
[]
[]
['democracy', 'EU']
['Brexit']
['Brexit']
['Brexit']
['EU']
['ECHR', 'Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
[]
[]
[]
[]
[]
['Brexit']
['brexit', 'mendacity']
['Brexit']
['Brexit']
['Brexit', 'UK', 'EU', 'Scotland', 'NI', 'Wales', 'England', 'Ireland', 'voters', 'politics', 'workers', 'economy', 'trade', 'finance', 'markets', 'investors', 'MPs', 'Parliament', 'PoliticalParties']
[]
['Brexit', 'EPlenary']
['Brexit']
['London', 'PMQs', 'jeremykyle', 'Ukbizhour', 'UK', 'Brexit', 'TheresaMay', 'LeaveEU']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Nrexit']
[]
['Brexit']
[]
[]
[]
[]
[]
[]
['BrexitShambles', 'PeoplesVote', 'SystemFailure', 'Brexit']
['FinalSay']
['Brexit']
[]
[]
[]
['Brexit', 'NHS', 'PeoplesVote', 'putittothepeople']
['brexit']
['Brexit', 'RespectTheResult', 'RespectDemocracy', 'LeaveMeansLeave']
['Brexit']
['pianocondiviso', 'Labour', 'May', 'Corbyn', 'Brexit']
['Brexit', 'EU', 'UK', 'PeoplesVote', 'theresamay', 'vote', 'stopbrexit', 'StandUp4Brexit', 'brexitdeal', 'Britain']
['brexit']
[]
[]
['Brexit', 'VFX', 'animation', 'settledstatus', 'presettledstatus', 'IBC365', 'IBC2017']
[]
[]
[]
['spittingimage', 'Brexit', 'BrexitShambles']
['Brexit']
['Brexit']
[]
[]
['BRExit']
['Brexit', 'solar', 'DogsOnCouches', 'bitcoin']
['FreedomOfMovement', 'Brexit']
['Brexit']
['Scotland', 'Brexit']
[]
[]
[]
['economics', 'uk', 'Brexit', 'BrexitShambles', 'BrexitCrisis', 'StopBrexit']
['NATO', 'NATO70', 'NATOAt70', 'poverty', 'Grenfell', 'Brexit', 'Ukraine']
['Brexit']
[]
[]
['Brexit']
['GovernmentofOccupation']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Schengen']
['Brexit']
['Brexit']
['Brexit']
['Documento', 'seguridad', 'defensa', 'Brexit']
[]
['FreedomOfMovement', 'Brexit']
['Brexit']
[]
['Brexit']
['Scotland', 'Brexit']
[]
[]
[]
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['PeoplesVote']
['Brexit']
['brexit', 'plasticpollution', 'fracking']
['Brexit']
['TheresaMay', 'Brexit', 'BrexitDeal', 'BrexitShambles', 'Brexit', 'BrexitShambles', 'TheresaMay', 'Resign']
['Leeds', 'Brexit', 'GDPR']
[]
['brexit']
['Brexit']
['Brexit', 'CooperLetwin']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
['BREAKING', 'brexit', 'NoDeal']
['Brexit']
[]
['brexit', 'eupol']
['Banksy', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
[]
[]
['Brexit', 'BrexitBetrayal', 'VoteUKIP', 'VoteThemOut', 'WTOBrexit', 'LeaveMeansLeave', 'LeaveEU']
['brexit']
['Brexit', 'GBR', 'GBP', 'GBPUSD', 'GBPEUR']
[]
[]
[]
[]
[]
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
[]
[]
[]
['Brexit']
[]
[]
['Brexit']
['Labour', 'Brexit', 'PeoplesVote']
['Brexit']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
[]
['EUCO', 'Brexit']
[]
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Frexit', 'brexit', 'UPR']
[]
[]
['Brexit', 'BrexitShambles']
[]
['Brexit']
[]
['Brexit', 'May']
['Brexit']
[]
['Brexit']
['BREAKING', 'brexit', 'NoDeal']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'BrexitDeal', 'WithdrawalAgreement', 'NoDeal', 'Juncker', 'EU27', 'UK']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'BrexitShambles']
[]
['Brexit']
[]
['Brexit']
['brexit', 'nobrexit']
[]
['Scotland', 'Brexit']
[]
['brexit', 'NoDeal']
[]
[]
['Brexit']
[]
['Brexit']
[]
[]
[]
['PMQs', 'Brexit']
['Brexit']
[]
[]
[]
['Brexit']
['PeoplesVote']
['Brexit', 'indyref2', 'DissolveTheUnion']
['EU', 'Brexit']
['Brexit']
['TheresaMay']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'news']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'NoDeal']
['Brexit']
[]
['Brexit', 'UK', 'EU']
[]
['Brexit', 'GTTO', 'JC4PM', 'ToriesOut']
[]
['Brexit', 'Snow']
['FreedomOfMovement', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['FinalSay']
['Brexit']
[]
['Brexit', 'afternoonlive']
['Brexit']
[]
['Brexit', 'GoldSilver']
['Brexit']
[]
[]
['Brexit']
[]
['Examine', 'dig', 'consign', 'surprising', 'preferred', 'messages', '1mdb', 'brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['FreedomOfMovement', 'Brexit']
['Brexit']
[]
['Brexit']
[]
['AprilFools', 'Brexit', 'SnowInApril', 'snow']
['Brexit']
[]
[]
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'ReinoUnido', 'Europa']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['SNP', 'PMQs', 'Brexit']
['Brexit']
['Brexit']
[]
[]
[]
['Brexit']
['Tory', 'PM']
[]
[]
[]
['Brexit', 'Westminster']
[]
['brexit']
[]
['Brexit']
['TheresaMayStatement', 'Brexit', 'JC4PM']
['Großbritannien', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['BrexitBetrayal', 'noneoftheabove', 'brexit']
[]
[]
['brexit']
['brexit']
[]
['brexit']
[]
[]
['Brexit']
['Brexit', 'NoDealNoProblem', 'Voters', 'VotedLeave', 'UK']
['Brexit', 'PMQs']
[]
[]
['Brexit']
['Brexit']
['British']
['Brexit', 'UKMFG']
[]
[]
['NewportWest', 'Brexit']
['brexit']
['EUCO', 'Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['MAGA', 'Brexit', 'GamerGate', 'SpyGate', 'Corruption', 'DeclarationOfIndependence', 'Liberty', 'freetommy', 'FreeSpeech', 'CivilRights', 'SocialismIsEvil']
['Brexit']
['Brexit']
['Brexit', 'innovation']
[]
['Brexit', 'TraitorInChief']
[]
['Brexit', 'UK', 'EU', 'US', 'tradetalks', 'FTA', 'NoDeal']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit', 'DragonBall']
['Brexit']
[]
['Brexit']
['RevokeArticle50', 'Brexit']
['brexit']
[]
[]
[]
['Großbritannien', 'Brexit']
['Brexit', 'Μέι', 'Κόρμπιν']
['Brexit', 'UK', 'EU', 'Scotland', 'NI', 'Wales', 'England', 'Ireland', 'voters', 'politics', 'workers', 'economy', 'trade', 'finance', 'markets', 'investors']
['Nrexit']
['brexit']
['Brexit', 'EU', 'StopBrexit', 'Peopl']
['EPlenary', 'Brexit']
['Brexit']
['Brexit']
['Brexit', 'WednesdayWisdom']
['Brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['OhJeremyCorbyn', 'theresaMayStatement', 'Brexit', 'JC4PM']
['brexit']
['Brexit']
[]
[]
['EU', 'eurozpravycz', 'brexit', 'Moscovici']
['Brexit', 'Galapagar', 'noticies']
['Brexit']
['Brexit', 'PlenoPE']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
['Brexit']
[]
['WednesdayWisdom', 'business', 'smallbiz', 'MiltonKeynes', 'Brexplainer', 'quote', 'Trump', 'PutitToThePeople', 'Brexit']
['Brexit']
['Federalism', 'india', 'USDR']
['FinalSay']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'immobilier', 'entreprise']
['Brexit']
['Brexit']
['UK', 'Brexit']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['FinalSay']
[]
['Brexit']
[]
['EU']
['Brexit']
['Brexit']
['BREAKING', 'brexit', 'NoDeal']
['Brexit']
['Brexit', 'Euro']
['Nrexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['brexit']
['Brexit', 'Boutexit', 'Algérie', 'Algeria', 'Bouteflika']
['Brexit']
[]
['Brexit', 'BrexitVote', 'BrexitShambles', 'brexitstorm']
['Afghanistan', 'Corbyn', 'Brexit']
['HMRC']
[]
['brexit', 'NoBrexit']
[]
['Brexit']
['Cabinet', 'brexit']
[]
['brexit']
['Brexit', 'RemainInTheEU']
['Brexit', 'obingo']
[]
[]
['Brexit']
['LosersVote', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'UK', 'EU', 'Scotland', 'NI', 'Wales', 'England', 'Ireland', 'voters', 'politics', 'workers', 'economy', 'trade', 'finance', 'markets', 'investors']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['BrexitProof', 'Spain', 'nodeal', 'Brexit', 'BrexitDebate']
['Brexit']
['Brexit', 'UK', 'WithdrawalAgreement']
['Brexit']
['theresamay', 'Brexit', 'Corbyn']
['Brexit']
['Brexit']
['Brexit', 'LoanChargeDelay']
[]
['Brexit']
[]
[]
['yawn', 'gif', 'Brexit', 'larrythecat']
[]
['brexit']
['Brexit']
[]
[]
['brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['brexit']
['Brexit']
['Brexit']
[]
['EU', 'Brexit']
['Brexit']
['Brexit']
['brexit']
['GlobalInTheGraniteState', 'Podcast']
[]
['Brexit', 'WithdrawalAgreement']
['Brexit', 'LoanChargeDelay']
[]
[]
['Brexit']
['Brexit']
[]
['British']
['Brexit']
[]
['UK']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['brexit']
['brexit']
[]
['Brexit']
['Brexit']
[]
['OTD', '100YearsAgo', 'Irish', 'Westminster', 'Ireland', 'brexit']
['Brexit']
[]
['Brexit', 'ERG', 'UKIP', 'BrexitCrisis', 'PoliticsLive']
['Brexit']
['Brexit']
['brexit', 'AsIrishAs', 'UnitedIreland', '100yearsago', 'Ireland']
['Brexit']
['BRExit']
['Brexit']
['brexit']
['Brexit', 'UK', 'WithdrawalAgreement']
[]
['Brexit']
['Brexit']
[]
[]
[]
['brexit']
[]
['AskFarage', 'Accountability']
[]
[]
['Germany', 'Brexit', 'Merkel']
[]
['Brexit']
['Brexit']
[]
['Brexit']
[]
['TheresaMay', 'Corbyn', 'Labour', 'Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Corbyn']
[]
['Brexit', 'UK', 'EU', 'Scotland', 'NI', 'Wales', 'England', 'Ireland', 'voters', 'politics', 'workers', 'economy', 'trade', 'finance', 'markets', 'investors']
[]
['Brexit']
['FailingGrayling', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['HereForYou', 'MakingAccountingSimple', 'UK', 'Brexit', 'Impact', 'Business', 'News']
['Brexit']
[]
['TreasonMayMustGo', 'Brexit', 'NoDeal', 'NoDealBrexit', 'WTOBrexit', 'NoSurrender']
['Brexit']
[]
['Brexit']
[]
['Großbritannien', 'Brexit']
['Brexit']
['Brexit', 'TrumpRussia', 'churro']
['Brexit']
[]
[]
[]
['Brexit']
['Brexit']
['brexit', 'NoDeal']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['yawn', 'gif', 'Brexit', 'larrythecat']
['Brexit']
['Brexit']
['Brexit', 'SNOW']
[]
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'EU', 'StopBrexit', 'Peopl']
['Brexit']
['Brexit', 'LoanChargeScandal']
['BREXIT', 'BREXITCLOCK', 'CLOCK', 'EU', 'EUREF', 'LEAVE']
[]
['brexit']
[]
['Brexit']
['Brexit', 'futureofeurope']
['brexit']
['Brexit', 'CooperLetwin']
['Brexit']
['Brexit']
['BrexitGate', 'PeoplesVote', 'Brexit']
[]
['Brexit']
[]
['Brexit', 'IT', 'SupplyChain', 'GartnerSCC', 'CIO']
[]
['Brexit', 'TrumpRussia', 'churro']
['Brexit']
[]
['Brexit', 'Großbritannien', 'EU', 'Regierung', 'Parlament']
['Brexit', 'STOPTheLoanCharge', 'SaveLives']
['YorkshireforEurope', 'Brexit']
['Brexit']
['Brexit']
['SkyNews', 'Brexit']
['Brexit']
[]
['brexit', 'brexitdebate']
['Brexit']
['Brexit', 'np', 'SoundCloud']
[]
[]
['Scheer2019', 'TrudeauMustGo', 'MCGA', 'MAGA', 'CommonSense', 'Politics', 'AlbertaProud', 'Wexit', 'Brexit', 'WWG1WGAhappyfinko2019']
['Brexit']
[]
['BrexitGate', 'PeoplesVote', 'Brexit']
[]
[]
[]
[]
['brexit']
['Brexit']
['Brexit', 'Currency', 'MoneyTransfer']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'theresamay']
[]
['Brexit']
['brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'LoanChargeDelay']
['Brexit']
['Brexit', 'Députés', 'Britanniques', 'Theresa']
['Brexit', 'Brexit']
[]
['nodeal', 'Brexit']
[]
['Brexit', 'UK', 'EU', 'Scotland', 'NI', 'Wales', 'England', 'Ireland', 'voters', 'politics', 'workers', 'economy', 'trade', 'finance', 'markets', 'investors', 'MPs', 'PoliticalParties']
['EU', 'brexit', 'webinar', 'blackcountry', 'export', 'import', 'business', 'free', 'guidance', 'EUexit']
[]
[]
['Labour', 'Brexit']
[]
[]
['Brexit']
['EPlenary', 'Brexit']
['Brexit']
['Brexit']
[]
[]
[]
[]
['Großbritannien', 'Brexit']
['Wednesday', 'says', 'brexit', 'new']
[]
['brexit']
[]
[]
['AprilFools', 'Brexit', 'SnowInApril', 'snow']
['Brexit']
['Brexit']
['BritishArmy', 'Corbyn', 'JoCox']
['Brexit']
[]
['FinalSay']
[]
['Labour', 'Brexit']
[]
['Brexit', 'PMQs']
['Brexit']
['brexit', 'leavemeansleave', 'BorisJohnson']
['NewportWest', 'Brexit']
['Brexit']
['EU', 'Brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'PMQs']
[]
['AirstripOne', 'GreatBritain', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Labour']
['Brexit']
['Brexit']
['urgent', 'Brexit']
[]
['Brexit']
['Brexit']
['WelshQuestions', 'Welsh']
['Brexit']
['Brexit']
['brexit', 'GSSeville', 'WTTCSevilla2019']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
[]
[]
['Brexit']
['yawn', 'gif', 'Brexit', 'larrythecat']
['brexit']
[]
['PeoplesVote']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['BrexitGate', 'PeoplesVote', 'Brexit']
[]
['Brexit']
['28DeAbril', 'Brexit', 'Gibraltar']
[]
['Brexit']
['Großbritannien', 'Brexit']
['Brexit']
['Brexit']
[]
['PeoplesVote', 'Brexit']
[]
[]
['brexit']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['FinalSay']
[]
['brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['PeoplesVote']
['nodeal']
['Brexit']
['Brexit']
['Brexit', 'RevokeArticle50']
[]
['Großbritannien', 'Brexit']
['Brexit', 'EU', 'deal']
['Brexit']
['brexit', 'brexitshambles']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['BBCR4today', 'Brexit']
['Brexit']
['Brexit', 'BrexitShambles']
['Brexit']
['NewportWest', 'Brexit']
[]
[]
['brexit']
[]
['brexit']
['Brexit']
['Großbritannien', 'Brexit']
[]
['brexit', 'viral', 'story', 'grade', 'beautiful']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Grenfell', 'Brexit']
[]
['Brexit']
[]
['Brexit']
['BBCR4today', 'Brexit']
['brexit']
['Brexit', 'Poverty', 'PMQs', 'PoliticsLive']
['Brexit', 'NoDeal', 'EUWahl2019', 'illner']
['Brexit']
[]
['NoDeal', 'Brexit']
['Brexit']
['EPsesija', 'Brexit', 'Brexit']
['UK', 'Brexit']
[]
['AHORA', 'Brexit', 'MalditaSuerte']
[]
['Brexit']
['Brexit']
['Nrexit']
['IDS', 'BREXIT']
['Brexit']
['Brexit', 'PeoplesVote']
[]
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'LeaveMeansLeave', 'StandUp4Brexit', 'peoplevparliament']
['Corbyn', 'Brexit', 'SNP']
['Brexit']
['EUCO', 'Brexit']
[]
['Corbyn', 'May']
['Brexit', 'tools']
[]
[]
['Brexit']
['Brexit', 'LoanChargeDelay']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Corbyn']
['Brexit', 'HouseofCommons', 'Elternabend']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['UK', 'RevokeArticle50', 'Brexit', 'StopBrexitSaveBritain']
['Brexit', 'LoanChargeDelay']
[]
['Brexit']
[]
['Brexit']
['Brexit', 'EU', 'BBCnews', 'Afternoonlive']
['Brexit', 'photography']
['ADO2019', 'Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['BrExit']
['FinalSay']
['Brexit']
['brexit', 'bbcnews', 'borisjohnson']
['Brexit']
['Brexit']
[]
['Brexit', 'BrexitBritain']
['brexit']
['Brexit']
['Brexit']
[]
[]
['brexit', 'UE']
[]
['brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
[]
['NoDeal', 'brexit']
['Brexit']
['nodeal', 'Brexit']
['Brexit']
['Brexit']
[]
['brexitshambles', 'brexit']
[]
[]
['Brexit']
[]
[]
['Brexit']
[]
[]
['Brexit']
['yawn', 'gif', 'Brexit', 'larrythecat']
[]
['Brexit']
['Brexit']
['brexit']
[]
[]
['Consent', 'Brexit', 'GDPR', 'data']
['Brexit']
['Brexit']
['brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'FFS', 'laurakuenssberg']
[]
[]
['Brexit', 'EUCO', 'Article50']
[]
['Brexit']
['Brexit']
[]
['brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['kitchen', 'brexit', 'GBBO']
['Tories', 'Brexit', 'FURIOUS']
['nothinghaschanged', 'Brexit', 'WA']
['Brexit', 'LoanChargeDelay']
['EU', 'ClimateChange']
['BREXIT']
['brexit']
[]
['brexit']
['Brexit']
['May', 'Corbyn', 'Brexit']
['RT', 'gold', 'silver', 'stocks', 'trading', 'trades', 'markets', 'Investing', 'today', 'rich', 'education', 'hope', 'dreams', 'Giveaway', 'free', 'positivity', 'focus', 'goals', 'life', 'money', 'success', 'fun', 'levelup', 'brexit']
['Brexit']
['Brexit']
['Brexit', 'scottbrown']
[]
['Brexit']
['Brexit']
['Brexit']
[]
[]
['EUCO', 'Brexit']
['Brexit', 'Boutexit', 'Algérie', 'Algeria', 'Bouteflika']
['Brexit']
['Brexit']
['Brexit']
['May', 'Brexit']
['Brexit', 'Pigs']
[]
['Brexit']
['Brexit']
['wednesdaythoughts', 'WinterIsHere', 'got', 'Brexit']
['NewportWest', 'Brexit']
[]
['brexit']
['UKIP', 'AfD', 'EDL']
['Brexit']
['Brexit']
['EuranetPlusSummit2019', 'Brexit']
['Européennes2019', 'GrandDébat', 'Brexit']
['EU']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'DissolveTheUnion']
['Brexit']
['brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'Cornwall']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit', 'LoanChargeDelay']
['Brexit']
[]
[]
['Brexit']
[]
[]
[]
['Brexit']
['Brexit', 'EU', 'StopBrexit', 'PeoplesVote']
['Brexit']
[]
['Brexit']
['brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit', 'LoysInLondon', 'PokemonGO']
['Brexit']
[]
['brexit', 'theresamay', 'corbyn', 'london', 'thunder']
[]
['Commonwealth', 'UK', 'HigherEd', 'Brexit', 'CGHE2019']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
['FinalSay']
['Brexit', 'Brandenburg']
[]
['Brexit', 'UK', 'EU']
[]
['brexit']
['Brexit']
['Brexit']
['EU', 'Europe', 'UK', 'Brexit', 'EUelections2019', 'IREXIT']
['medicine', 'EU', 'Brexit', 'news', 'regulatoryaffairs', 'uk']
[]
['Brexit']
[]
[]
['Brexit']
[]
['Últimahora']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'MarkFrancois']
['Brexit', 'BrexitVote', 'BrexitShambles', 'PedoJoe', 'jimmysavile']
['Brexit']
[]
['Brexit']
['Brexit']
['BREXIT', 'MAY', 'LABURISTI']
['Brexit']
['NoDealBrexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['BrexitShambles', 'Brexit']
['SNP']
['Brexit']
['Brexit']
['brexit']
['NewportWest', 'UKIP', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['SNP']
['Brexit']
['Brexit']
['SNP']
['brexit']
['Brexit']
['Britain', 'EuropeanUnion', 'trading', 'automotive', 'brexit']
['Brexit', 'brexitstorm', 'BrexitShambles']
[]
[]
['brexit', 'loesje']
['Brexit']
[]
[]
['diabetes', 'Brexit']
['data']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
['brexit']
['Brexit']
['Brexit', 'EleccionesGenerales28Abril', 'DeclaracionAnual2018']
[]
['Brexit']
['Brexit', 'Leave', 'NoDeal']
[]
['Brexit']
[]
['Brexit', 'GeneralElections2019']
[]
['TheresaMay', 'NoDeal', 'Brexit', 'inViVaVoce', 'Radio1']
['SNP']
['Brexit', 'BrexitBetrayal', 'Cabinet', 'MayMustGo']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'EPlenary']
[]
[]
['Brexit']
['Germany', 'Merkel', 'Brexit']
[]
['BREXIT']
['Brexit']
['Brexit']
['London', 'brexit', 'Londonislovinit', 'manwithvanlondon', 'removals']
[]
['London', 'brexit', 'Londonislovinit', 'manwithvanlondon', 'removals']
['Brexit']
['CustomsUnion', 'Brexit']
['London', 'brexit', 'Londonislovinit', 'manwithvanlondon', 'removals']
['London', 'brexit', 'Londonislovinit', 'manwithvanlondon', 'removals']
[]
['Brexit', 'RevokeArticle50']
[]
[]
['Brexit']
['Corbyn', 'Europa', 'Trump', 'Brexit', 'May']
['Brexit']
['brexit', 'UE', 'frexit']
[]
['brexit']
['Brexit']
['UK', 'police', 'corbyn', 'may', 'brexit']
['Brexit']
['nodeal', 'Brexit']
['Brexit', 'LoanChargeDelay']
[]
['Sovereigns', 'Sovereignty', 'Brexit', 'EU', 'UK', 'GiletsJeunes', 'patriots', 'Resistance', 'Liberté', 'Rothschild', 'FISAGATE', 'MAGA', 'GabFam', 'cryptocurrency', 'gold', 'law']
[]
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['brexit']
['brexit', 'europeanunion', 'eu', 'europe', 'bettereurope', 'leaveEU']
['brexit']
['NoDeal', 'brexit']
['Brexit', 'ExtinctionRebellion']
[]
['Brexit', 'UnionEuropéenne']
['Brexit']
['AvengersEndgame', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['ElMiradorRE', 'Brexit', 'Atzucac']
['Brexit']
['Frontal21', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['ElMiradorRE', 'Brexit', 'Atzucac']
['Brexit']
['Brexit', 'BrexitVote', 'PMQs']
['Brexit']
['SNP', 'Brexit', 'indyref2']
['Brexit']
[]
['Brexit']
['Brexit']
['BREXIT']
['May', 'Brexit']
['BrexitGate', 'PeoplesVote', 'Brexit']
['Brexit']
[]
['Brexit', 'UKelectoral']
[]
['Brexit', 'EPlenary']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['brexit']
['Westminster', 'Brexit']
['May', 'Labour']
[]
['Brexit']
[]
['Brexit']
['Consent', 'Brexit', 'GDPR', 'data', 'collaboration']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Verhofstadt', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Amazon', 'HMRC', 'HMTreasury']
['Brexit']
[]
[]
[]
['NoDeal', 'Brexit']
[]
[]
['Brexit', 'StandUp4Brexit', 'LetsGoWTO', 'NoDealNoProblem']
['Brexit']
['Brexit']
[]
['brexit']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['nodeal', 'brexit']
['SNP']
[]
['SNP']
['Brexit', 'UK', 'Erasmus', 'HE']
[]
['Brexit']
['EU', 'Brexit']
[]
[]
['Brexit']
['Brexit']
['brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['BrexitGate', 'PeoplesVote', 'Brexit']
['PMQs']
[]
['Brexit']
['Brexit']
['Brexit']
['BBCR4today']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['grumpy', 'brexit', 'countryruinedbyidiots']
['Brexit']
[]
['Brexit']
['FinalSay']
['Brexit']
['Brexit']
['Brexit', 'Politics', 'TheresaMay', 'BusinessNews']
['Brexit', 'BrexitVote', 'PMQs']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'businesses']
['Brexit']
['eatmorefish', 'buylocal']
['Brexit']
['Brexit']
['eatmorefish', 'buylocal']
[]
[]
['BREXIT']
['Brexit']
['Glasgowisgrande']
['eatmorefish', 'buylocal', 'supportUKIrishfishingindustry']
['Brexit']
['SNP', 'Brexit', 'indyref2']
[]
['Brexit']
['Brexit']
['Brexit']
['British']
['Brexit']
['Brexit']
['Brexit', 'IndicativeVotes', 'SNP', 'INdyref2', 'Scotref', 'FBSI']
['Brexit', 'référendum', 'RichelieuGestion']
['Brexit']
['Nrexit']
['Brexit']
['Brexit', 'BrexitBetrayal']
['Brexit']
['Brexit', 'UK', 'WithdrawalAgreement']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
[]
['SNP', 'Brexit', 'indyref2']
['Brexit']
['brexit', 'NoDeal']
['Brexit', 'LoanChargeDelay']
['Brexit']
['todaysor']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['EPlenary', 'Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Leave', 'NoDeal', 'PMQs']
['Brexit']
[]
['Europaparlament']
['Brexit']
[]
['Cabinet', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
[]
['Brexit']
[]
['Glasgowisgrande']
[]
['Brexit']
['Brexit', 'BrexitChaos', 'TheresaMay', 'JeremyCorbyn', 'Tories']
['Brexit', 'IndicativeVotes', 'SNP', 'INdyref2', 'Scotref', 'FBSI', 'Commons']
[]
['Brexit']
['labour', 'Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'Leavers', 'Remainers']
['Brexit']
[]
[]
[]
['Brexit', 'PMQs']
['EUCO', 'Brexit']
['Brexit']
['Brexit']
['Brexit', 'madeinleuropa']
['brexit', 'megxit']
['brexit', 'NoDeal']
[]
['Brexit']
[]
[]
[]
['Brexit']
['eatmorefish', 'buylocal', 'supportUKIrishfishingindustry', 'brexit', 'betrayal']
['eatmorefish', 'buylocal', 'supportUKIrishfishingindustry', 'brexit', 'betrayal']
['eatmorefish', 'buylocal', 'supportUKIrishfishingindustry', 'brexit', 'betrayal']
['Brexit']
['eatmorefish', 'buylocal', 'supportUKIrishfishingindustry', 'brexit', 'betrayal']
['Brexit']
[]
[]
['Brexit']
['BBCR4today', 'Brexit']
['BREXIT', 'GBP']
['Brexit']
['Bulls', 'brexit', 'oil']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['BrexitGate', 'PeoplesVote', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'UKconstruction']
['brexit']
[]
[]
['Brexit']
['BrexitGate', 'PeoplesVote', 'Brexit']
['Corbyn', 'TheresaMay', 'Brexit']
['ArbikieHighlandEstate', 'Scotland', 'Whisky', 'Brexit']
['Brexit', 'Thunder']
['Brexit']
['ComercioInforma', 'Brexit', 'EfectoBrexit']
[]
['Brexit']
['brexit']
[]
['Brexit']
['UEA', 'politics', 'Brexit']
['Brexit']
['Brexit', 'PMQs']
['brexit', 'forex']
['Brexit']
['Brexit']
['Brexit']
['brexit']
[]
['Brexit']
['Brexit']
['Netherlands']
['Brexit']
['brexit']
[]
[]
['Brexit']
['leave', 'brexit']
['Brexit', 'LoanChargeDelay']
['FreedomOfMovement', 'Brexit']
['Brexit']
['Brexit', 'BrexitBetrayal', 'VoteUKIP', 'VoteThemOut', 'WTOBrexit', 'LeaveMeansLeave', 'LeaveEU']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['WednesdayWisdom', 'Remainer']
[]
['Brexit']
['brexit', 'NoDeal']
['Brexit']
['Brexit', 'theresaMayStatement']
[]
['Brexit']
['Brexit']
['Brexit']
['Westminster', 'Brexit']
['Brexit']
['Brexit']
[]
['yawn', 'gif', 'Brexit', 'larrythecat']
['LiveWestminster', 'Brexit']
['Brexit']
['Brexit']
['EU', 'Brexit']
['Brexit']
['Brexit', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['PINGConference2019', 'brexit', 'pharma']
['Brexit']
['TheresaMay', 'Brexit', 'BrexitDeal', 'BrexitShambles', 'Brexit', 'BrexitShambles', 'TheresaMay', 'Resign', 'BrexitMayhem']
['Brexit', 'BrexitVote', 'PMQs']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['brexit']
['Brexit']
['brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['BREAKING', 'brexit', 'NoDeal']
[]
['Brexit']
['Brexit']
[]
['ProjectFear', 'WTO', 'BrexitBETRAYAL', 'Brexit', 'GoWTO', 'NoDeal']
['Brexit']
['Brexit']
['Brexit']
['GDPR', 'Brexit']
['brexit']
['Labour', 'JeremyCorbyn', 'TheresaMay', 'Brexit', 'Politics']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'StopBrexitSaveBritain']
['Brexit']
[]
['revoke', 'PeopleVote', 'brexit']
['Brexit']
['Brexit']
['BBCR4today', 'Brexit']
['Brexit']
['May', 'Labour']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['RevokeArticle50Petition']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit', 'LoanChargeDelay']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Marxist', 'Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit', 'chemical', 'REACH']
[]
['RankedChoiceVoting', 'Brexit']
[]
['brexit']
['Brexit']
['BrexitGate', 'PeoplesVote', 'Brexit']
['brexit']
[]
['Amazon', 'HMRC', 'HMTreasury']
[]
[]
['wednesday', 'devolutionvsevolution', 'brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['GetMayOutNow', 'brexit']
['Brexit', 'brexitstorm', 'BrexitChaos', 'uk', 'GreatBritain', 'UnitedKingdom']
['Brexit', 'CooperLetwin']
['Brexit', 'LoanChargeDelay']
['HMRC']
[]
['Brexit', 'MercadoAbierto']
['Brexit']
['Brexit']
['Brexit']
['Μοσκοβισί', 'ΕΕ', 'Βρετανία', 'Brexit']
['Brexit']
[]
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['IanBlackford', 'Deluded', 'OutOfTouch', 'Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Amazon', 'HMRC', 'HMTreasury']
[]
['Leaders', 'Brexit', 'BrexitVote']
['Brexit']
['Brexit']
[]
['TeamJunckerEU', 'RuleOfLaw']
['Brexit', 'WynnResorts', 'cryptos', 'Blackrock', 'TheMasters', 'RewritingTheOdds']
['Brexit']
['Brexit']
[]
['Brexit', 'RevokeA50']
['brexit']
['Germany', 'Merkel', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['UK', 'may', 'brexit', 'epicfail']
['USOpen', 'Brexit', 'May', 'Brussels']
['Brexit']
[]
['Brexit']
['ParliamentVsThePeople', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'LoanChargeDelay']
['brexit']
[]
['Brexit']
['labour', 'Brexit']
['Brexit']
['brexit']
['Brexit']
['brexit']
[]
[]
['Brexit']
['brexit']
['Brexit']
['Brexit']
['BBCNews', 'Brexit']
['Brexit']
[]
['Labour', 'JeremyCorbyn', 'TheresaMay', 'Brexit', 'Politics']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'BrexitShambles']
['Brexit']
['Brexit']
[]
['brexit', 'uk']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['May', 'WithdrawalAgreement', 'Labour', 'BRINO', 'EU', 'Brexit']
['Brexit']
['Brexit']
[]
[]
[]
['BRExit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Germany', 'Merkel', 'Brexit']
['brexit']
[]
['Brexit']
['Brexit']
[]
['brexit', 'corbyn', 'NATO', 'Algeria', 'Mueller', 'mozambique']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['nodeal', 'brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit', 'StopBrexitSaveBritain']
[]
['British']
['brexit']
['STOPtheLoanCharge', 'SaveLives', 'LoanChargeDelay', 'Brexit']
['Brexit']
['Brexit']
['Statesmanshipnotbrinkmanshipiswhatweneed', 'brexit']
['nodeal', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'BrexitCrisis']
[]
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Juncker', 'Breaking', 'Brexit']
[]
['Brexit']
['UE', 'Brexit']
['Brexit', 'TheresaMay', 'Lagerhuis', 'HouseofCommons']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['truecolours', 'brexit']
['Brexit', 'radar909']
['Brexit']
[]
[]
['China', 'EUA', 'acuerdocomercial', 'PMI', 'zonadeleuro', 'Brexit', 'TheresaMay', 'Argentina']
['WednesdayWisdom', 'Brexit', 'GoodNews', 'JesusChrist']
['GovernmentofOccupation']
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Edtechstrategy', 'England']
['Brexit']
[]
[]
[]
[]
['Brexit']
['STOPCLANDESTINI', 'STOPINVASIONE', 'StopIslam', 'stopong', 'tolleranzazero', 'chiudiamoiporti', 'portichiusi', 'blocconavalesubito', 'iostoconsalvini', 'NessunoTocchiSalvini', 'italexit', 'frexit', 'grexit', 'nexit', 'brexit', 'stopEU', 'leaveEU', 'Stopsoros', 'SALVININONMOLLARE']
['Brexit']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
['brexit', 'NorthernIreland', 'NI', 'Ireland']
['Brexit']
['Brexit', 'WithdrawalAgreement']
['Brexit']
['Brexit']
['eulections', 'brexit', 'blackout2019']
['brexit', 'border', 'backstop']
[]
['NorthEast', 'business', 'Brexit']
['brexit', 'conservatives', 'ConservativeParty']
['Brexit']
['Brexit', 'radar909']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['euref', 'Leave', 'Brexit', 'Remain']
[]
['brexit']
['Brexit']
['Brexit']
['brexit', 'politicslive']
['Brexit']
['Brexit']
[]
['brexit']
[]
['Amazon', 'HMRC', 'HMTreasury']
['Brexit']
['Brexit', 'LoanChargeDelay']
[]
['Brexit', 'SNP']
['Brexit', 'AnishKapoor']
['Brexit']
['EU', 'Brexit']
['ActeXX', 'Brexit']
[]
['Brexit']
['UK', 'may', 'brexit', 'epicfail']
['Glasgowisgrande']
['Brexit']
[]
['Brexit']
['Brexit', 'longread']
[]
['Brexit']
['brexit']
[]
['Brexit']
[]
['labour', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['brexit', 'NoDeal']
[]
['Brexit', 'Boutexit', 'Algérie', 'Algeria', 'Bouteflika']
['Brexit']
['British']
[]
[]
[]
['Brexit']
['Brexit', 'ButterFingers']
[]
['Brexit']
['PMQs', 'Brexit']
['Europe', 'chaos', 'nobrexit', 'brexit', 'nodeal', 'deal', 'London', 'UK', 'FBPE', 'Europa']
['Brexit']
[]
['Brexit']
[]
['FreedomOfMovement', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Schengen']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Juncker', 'UK', 'Brexit']
['Brexit']
[]
[]
['ComDéfenseSénat']
[]
['May', 'Labour']
['Brexit']
['Brexit']
['Brexit', 'Cyprus']
[]
['Brexit', 'yellowvestUK', 'MEGA']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Μοσκοβισί', 'ΕΕ', 'Βρετανία', 'Brexit']
['Brexit']
['Brexit', 'Corbyn']
['STOPCLANDESTINI', 'STOPINVASIONE', 'StopIslam', 'stopong', 'tolleranzazero', 'chiudiamoiporti', 'portichiusi', 'blocconavalesubito', 'iostoconsalvini', 'NessunoTocchiSalvini', 'italexit', 'frexit', 'grexit', 'nexit', 'brexit', 'stopEU', 'leaveEU', 'Stopsoros', 'SALVININONMOLLARE']
['ProjectFear', 'WTO', 'BrexitBETRAYAL', 'Brexit', 'GoWTO', 'NoDeal']
['Brexit']
['Brexit', 'SNP']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['PMQs', 'brexit']
['Brexit']
['Brexit']
['Gibraltar']
['Brexit']
[]
['Apocalypse', 'Brexit']
['WednesdayWisdom', 'Brexit', 'GoodNews', 'JesusChrist']
['Brexit']
['Brexit', 'MalthouseCompromise']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'Britain', 'British']
['Brexit']
['Brexit']
['GetMayOutNow', 'brexit']
['May', 'Labour', 'ChartoftheWeek', 'Brexit', 'MayDeal']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['brexit', 'peoplesVote', 'Bremain']
['labour', 'Brexit']
['ElMiradorRE', 'Brexit', 'Atzucac', 'enquesta']
['Brexit']
[]
['Brexit']
['Brexit', 'UK']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit', 'Jacob_Rees_Moog']
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
['EPlenary', 'Brexit']
['Brexit']
[]
[]
['brexit', 'NoDeal']
['Brexit', 'PeoplesVote', 'FinalSay']
['Brexit', 'Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['MFF', 'Article7', 'SDGs']
['victorialive']
[]
['brexit', 'loesje']
[]
[]
['Brexit']
['Brexit']
[]
[]
[]
['Brexit']
['Brexit']
['PMQs', 'PrimeMinister', 'Scotland', 'EU']
['Radar909', 'Brexit', 'PonleA909']
['brexit', 'theresamay', 'corbyn']
['STOPCLANDESTINI', 'STOPINVASIONE', 'StopIslam', 'stopong', 'tolleranzazero', 'chiudiamoiporti', 'portichiusi', 'blocconavalesubito', 'iostoconsalvini', 'NessunoTocchiSalvini', 'italexit', 'frexit', 'grexit', 'nexit', 'brexit', 'stopEU', 'leaveEU', 'Stopsoros', 'SALVININONMOLLARE']
[]
['Brexit']
['pettravel', 'traveltips', 'dogs', 'cats']
['Brexit', 'LoanChargeDelay']
['RevokeArticle50Petition', 'Corbyn', 'Brexit']
['brexit']
['Nrexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit', 'LoanChargeDelay']
[]
[]
[]
['Brexit', 'FBPE']
['Brexit', 'BrexitBetrayal', 'VoteUKIP', 'VoteThemOut', 'WTOBrexit', 'LeaveMeansLeave', 'LeaveEU']
['Brexit']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit', 'UKimmigration', 'EUnationals', 'EUSS']
[]
[]
['Brexit', 'BrexitBetrayal']
['Brexit']
[]
['Brexit']
[]
['alaune', 'charliehebdo', 'Enquête', 'Erdogan']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Thunder']
['SeriousViolenceSummit']
[]
['Brexit']
[]
[]
['Brexit']
['brexit', 'NoDeal']
['Brexit']
['Brexit']
['BREXIT', 'eufunded', 'UoB', 'sponsored', 'clinicaltrials', 'PHITT', 'CT', 'samples', 'biology', 'CLCN', 'IGTP']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'Schengen']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Thunder']
['Brexit']
['nodeal', 'Brexit']
[]
['Brexit']
[]
['Brexit']
['Corbyn', 'Brexit']
['Brexit', 'UK', 'EU']
['brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
[]
[]
['book', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Juncker', 'UK', 'Brexit']
['Brexit']
[]
['Brexit', 'iestaff']
['Brexit']
['Brexit']
['PMI', 'Brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit', 'LoanChargeDelay']
['Brexit']
['Brexit']
['Brexit']
['pmqs', 'brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['German', 'Business', 'Law', 'Brexit']
[]
[]
['Brexit', 'LoanChargeDelay']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Européennes2019', 'GrandDébat', 'Brexit']
['Brexit']
['brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
[]
['BBCR4today', 'EU', 'Brexit', 'wato', 'BBCR4today']
[]
[]
['ComDéfenseSénat', 'Brexit']
[]
[]
[]
['Européennes2019', 'GrandDébat', 'Brexit']
['Brexit']
['Brexit', 'BrexitShambles']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Nrexit']
['Brexit', 'trascina']
['Brexit']
[]
['Brexit']
['brexit']
['Brexit']
['Brexit']
['FreedomOfMovement', 'Brexit', 'RevokeArticle50']
['Brexit', 'WednesdayWisdom']
['brexit']
['Brexit', 'PowerToThePeople', 'FairPlayAlways', 'Vital']
['Brexit']
['Brexit']
['brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['ElMiradorRE', 'Brexit', 'Atzucac', 'enquesta']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['cabal', 'Brexit']
['GovernmentofOccupation', 'Brexit']
['Brexit', 'ButterFingers']
[]
['Brexit']
[]
[]
[]
['brexit', 'UKIP', 'corbynbetrayal', 'peoplesvote', 'stopbrexit']
[]
['brexit', 'NoDeal']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['pmqs', 'brexit']
['brexit']
['Brexit']
[]
['GeneralElectionNow', 'Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['BrexitMEPs', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit', 'LoanChargeDelay']
['Brexit']
[]
[]
[]
['Européennes2019', 'GrandDébat', 'Brexit', 'Algérie']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'BrexitVote', 'PMQs']
[]
['Jinek', 'Brexit', 'Europa']
['Brexit']
[]
[]
['Labour', 'brexit']
['Brexit', 'Ukraine', 'migrants', 'RussiaHoax']
['Brexit']
[]
['Brexit', 'iestaff']
['Brexit']
['Brexit']
['Brexit', 'LoanChargeDelay']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['EPlenum', 'Brexit']
[]
['Irony', 'Brexit', 'PeoplesVote']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'LoanChargeDelay']
['BRExit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['brexit', 'britain', 'English']
['Brexit']
[]
[]
['Brexit', 'UnionEuropéenne']
['Brexit', 'LoanChargeDelay']
['Brexit']
['France5']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
[]
['FreedomOfMovement', 'Brexit']
['Brexit']
[]
['Brexit', 'Prepare4Brexit']
['Brexit', 'BrexitVote', 'PMQs']
[]
['Brexit']
['Brexit']
['Glasgowisgrande']
['FreedomOfMovement', 'Brexit']
[]
['Brexit']
['PeoplesVote', 'Brexit']
['FarRight', 'UK', 'Remain', 'Brexit']
['Brexit']
['Brexit']
['Leavers']
[]
['Brexit']
['FinalSay']
[]
['brexit', 'NoDeal']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['brexit']
['Juncker', 'Brexit']
['Brexit', 'PMQS']
['Brexit']
['Brexit']
['Brexit', 'innovation']
['Brexit']
[]
[]
[]
['Brexit', 'UK', 'EU', 'brexitstorm', 'BrexitDay']
['brexit']
['Brexit']
[]
[]
['brexit', 'huumori', 'meemit', 'turunsanomat']
['Brexit', 'LoanChargeDelay']
['Brexit']
['Brexit']
[]
['PMQs']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['brexit']
['Brexit', 'NoDeal']
['Macron', 'brexit', 'uneuropadiversa', 'EU', 'Europa', 'Economia', 'UK']
['corbyn', 'Brexit', 'PeoplesVote', 'Labour', 'ERGer']
['Brexit']
['Brexit']
['Macron', 'brexit', 'uneuropadiversa', 'EU', 'Europa', 'Economia', 'UK']
['Brexit']
[]
[]
[]
['brexit']
[]
['Glasgowisgrande']
['Brexit']
['Brexit']
['Brexit']
[]
['brexit', 'FBPE']
['Brexit']
['brexit', 'Corbyn']
['FinalSay']
['brexit', 'pmqt', 'DrainTheSwamp']
['Law', 'Coffee', 'FamilyLaw', 'Brexit', 'YoungLegalAidLawyer', 'LegalAidLawyer']
['StopBrexit', 'Remain', 'EU', 'Brexit']
['brexit', 'MASTERキートン']
[]
['Brexit']
['Brexit', 'LoanChargeDelay']
['Brexit', 'BrexitVote', 'PMQs']
['Brexit']
[]
[]
[]
['brexit']
['Brexit']
['Brexit', 'brexitendgame', 'iamEuropean']
['brexit', 'NoDeal']
['Brexit']
[]
['Brexit']
['Brexit']
['EPlenary', 'Brexit']
['brexit', 'research']
[]
['Brexit', 'justsaying']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'UnionEuropéenne']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'PeoplesVote']
[]
['Brexit']
['Brexit', 'reconciliation']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
[]
['Brexit', 'stoptheloancharge']
['Brexit']
['Brexit']
['ComDéfenseSénat']
['Brexit']
['PMQs', 'Brexit']
[]
['Brexit']
['Brexit']
[]
['England', 'English', 'UK', 'EU', 'BrexitBetrayal', 'brexit', 'labour', 'LibDems', 'ConservativeParty', 'BrexitParty', 'PMQs', 'PMQ']
['Brexit']
['Brexit']
['Brexit']
[]
['brexit', 'GFA']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['NastyParty']
[]
['PutItToThePeople', 'Brexit']
[]
['Brexit']
['Brexit']
['ComDéfenseSénat', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Gibraltar']
['Brexit', 'RevokeArticle50']
[]
['Brexit']
['PMQs']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'SingleMarket']
[]
[]
['Brexit', 'LoanChargeDelay']
['Brexit']
['NoDeal', 'NationalWalkingDay', 'Leave', 'Brexit', 'PMQs']
['Brexit']
[]
['Brexit']
['Juncker', 'UK', 'Brexit']
[]
[]
[]
['Brexit']
['Brexit']
[]
['brexit']
['Brexit']
[]
[]
[]
['Brexit']
['brexit', 'supplychain', 'Logistics', 'strategy']
['Brexit']
[]
[]
['Brexit']
['Brexit', 'UK']
[]
['Brexit']
[]
['Brexit']
['Brexit', 'GrandDebatNational']
[]
[]
['Brexit']
['brexit']
['Brexit']
['Brexit']
['NewportWest', 'Brexit']
['Brexit']
['Brexit', 'WhiteSupremacistEU', 'NoDeal']
[]
[]
['Brexit']
[]
[]
['theresaMayStatement', 'Brexit']
[]
[]
[]
['Brexit']
['Article50']
[]
['Industrieproduktion', 'Deutschland', 'USArbeitsmarkt', 'Brexit', 'Aktienmärkte']
[]
['Ultimatum', 'Bruselas', 'Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['lies', 'leavemeansleave', 'brexit', 'nodeal']
[]
['WednesdayWisdom', 'ToDo']
[]
['Brexit']
[]
['Corbyn', 'Brexit', 'RevokeArticle50Petition']
[]
['Brexit', 'LoanChargeDelay']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['corbyn', 'Brexit', 'PeoplesVote', 'Labour', 'ERGer', 'TheresaMay']
['Brexit', 'UnionEuropéenne']
['Brexit']
['CustomsUnion', 'Brexit']
[]
['Brexit']
['Brexit', 'Boutexit', 'Algérie', 'Algeria', 'Bouteflika']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'FBPE']
['EU', 'Brexit']
['Brexit']
['Brexit']
['Hansard', 'Commons', 'VoteLeave', 'Brexit', 'EUref']
[]
[]
['Brexit']
['PeoplesVote', 'Brexit']
['British']
['Brexit']
['Brexit']
['politicians', 'JeremyCorbyn', 'LabourParty', 'brexit', 'gove']
['BREXIT']
['QAG', 'Brexit', 'PM']
[]
['Juncker', 'Brexit', 'EU']
[]
['CloseTheBorderNow', 'mexico', 'Tijuana', 'ms13', 'NoDACA', 'bikersfortrump', 'DemocratsAreDestroyingAmerica', 'WalkAwayFromDemocrats', 'KeepAmericaGreat2020', 'NationalEmergency', 'nra', 'ice', 'BuildTheDamnWallNow', 'FakeNews', 'EnemyOfThePeople', 'bbcnewsnight', 'brexit', 'BLEXIT', 'Texas']
['warhammer40k', 'brexit']
[]
['Brexit', 'LoanChargeDelay']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Boutexit', 'Algérie', 'Algeria', 'Bouteflika']
[]
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['brexit']
['Brexit']
['brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Schengen']
[]
['Brexit']
['Brexit', 'May']
['Brexit', 'PeoplesVote']
['Brexit']
[]
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit', 'Boutexit', 'Algérie', 'Algeria', 'Bouteflika']
['FinalSay']
['Brexit']
['EU', 'Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'ComDéfenseSénat', 'ComAfEurSénat']
['Brexit']
['brexit']
['brexit', 'Brexitbetrayal']
['Brexit']
['Brexit']
['Brexiting', 'Brexit']
[]
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
[]
['brexit']
['britischen', 'Unterhaus', 'Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Corbyn', 'May', 'Brexit']
[]
['EPlenary', 'Brexit']
['NastyParty']
['soho', 'graffiti', 'brexit', 'schmexit']
['brexit']
['Brexit', 'NorthernIreland', 'Ireland', 'Spain', 'UK', 'EU', 'withdrawalagreement', 'futurerelationship', 'Gibraltar', 'BritishOverseasTerritory', 'BOT', 'imo']
[]
['brexit']
[]
[]
[]
['Brexit']
['Brexit', 'BBCbias', 'GTTO']
[]
['NoDeal', 'Brexit', 'RadioactiveWaste']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['UnitedKingdom', 'Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'mentalhealth']
[]
['brexit', 'genderequality', 'womensupportingwomen', 'genderpaygap']
[]
['Brexit']
['Brexit', 'DirectAN', 'QAG']
[]
[]
['Brexit']
['Brexit']
['Brexit', 'BrexitChaos', 'brexitart', 'artwork', 'artlover']
[]
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['peoplesvote', 'brexit', 'PMQs']
['brexit']
[]
[]
['Brexit', 'Boutexit', 'Algérie', 'Algeria', 'Bouteflika']
['Brexit', 'May', 'Großbritannien']
[]
[]
['Brexit']
['Juncker', 'Brexit', 'Frexit', 'ParlementEuropeen']
['Brexit']
['NoDealBrexit']
[]
['Brexit']
['Brexit', 'entreprises', 'France', 'exporter', 'RoyaumeUni']
['Brexit']
[]
['Juncker', 'UK', 'Brexit']
[]
[]
[]
[]
[]
['Brexit']
['Brexit', 'Antisemitic', 'Marxist']
[]
['Brexit']
['Brexit', 'UK', 'WithdrawalAgreement']
[]
['Brexit']
['Brexit']
['brexit']
[]
['Brexit']
['Brexit']
['GetMayOutNow', 'brexit', 'LeaveMeansLeave']
['Brexit']
['Brexit']
['Brexit', 'Corbyn', 'TheresaMay']
['brexit']
['brexit']
['Brexit']
[]
['NoDeal', 'Brexit']
['brexit', 'travel']
['Brexit']
[]
['FinalSay']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
[]
[]
['Brexit']
['Brexit']
['brexit', 'ritual', 'nhs', 'druid', 'animism']
['Brexit', 'LoanChargeDelay']
['Brexit', 'ukpoverty']
[]
[]
['FinalSay']
[]
['PMI', 'Brexit']
['UKIP', 'Brexit', 'BrexitCrisis']
['Brexit']
['Brexit']
[]
['Bridgen', 'Francois', 'Brexit', 'JustMakeItStop', 'BrexitisaCrimeScene', 'RevokeArticle50']
['TeresaMay', 'JeremyCorbyn', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['spring']
['Brexit']
[]
[]
['Brexit', 'PeoplesVote']
['Labour', 'Brexit']
['Labour']
['Brexit']
[]
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
[]
[]
['FarRightExtremism']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Glasgowisgrande', 'wonderfulwakey', 'BrumisBrill', 'LovinLeeds', 'BlackpoolRocks', 'huddersfieldis', 'ATLondonUK', 'Cardiff', 'Brexit', 'UKBizHour', 'ukhashtags', 'BoltonRT', 'tweetuk', 'socialmedia']
['BrexitBetrayal', 'brexit']
[]
[]
[]
['Brexit']
['Brexit', 'UnionEuropéenne', 'Gibraltar', 'España']
['UK', 'Brexit']
['Brexit']
['Brexit', 'HR']
['Brexit', 'LoanChargeDelay']
['brexit', 'Remain']
['Brexit']
['Brexit']
['Brexit']
['standup4brexit', 'Brexit']
[]
['Brexit']
['VoteLeave', 'Brexit', 'FakeNews']
['Brexit']
['3aprile', 'Popolodellafamiglia', 'PDF', 'parlamento', 'redditodimaternità', 'RDM']
['Brexit']
['Brexit', 'BrexitBetrayal', 'BrexitVote']
['brexit']
[]
[]
['indyref2', 'Please']
['EU', 'Brexit', 'PeoplesVote']
['Brexit']
['Brexit']
['EU', 'ClimateChange']
['NastyParty']
['Brexit']
['3aprile', 'Parlamento', 'RedditodiMaternità', 'rdm']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'Stop', 'Now']
['Nrexit']
[]
['EU', 'ClimateChange']
['Brexit']
[]
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
['Brexit']
['Brexit']
['brexit']
['brexit']
['FinalSay']
['Brexit', 'Boutexit', 'Algérie', 'Algeria', 'Bouteflika']
['Brexit', 'LoanChargeDelay']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit', 'UnionEuropéenne', 'DirectAN', 'QAG']
[]
['NoDeal', 'Brexit', 'ChangePolitics']
['BrexitShambles', 'brexit', 'BrexitCrisis', 'scotland', 'IndyRef2']
[]
['Brexit']
[]
['Brexit']
['EUCO', 'Brexit']
['Brexit']
['Brexit', 'RevokeArticle50', 'PeoplesVote']
[]
[]
['Brexit', 'ukpoverty']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'CooperLetwin']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit', 'Frexit', 'EnsemblePourLeFrexit', 'FranceLibreÀLondres']
['Irlandia', 'brexit']
[]
['Brexit']
[]
['Brexit']
[]
['brexit', 'EPlenary']
['NoDeal', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'NoDeal']
[]
['Brexit']
['brexit']
['Brexit']
['Brexit']
[]
[]
[]
['UE', 'Brexit']
[]
['Brexit']
['BrexitShambles', 'brexit', 'BrexitCrisis', 'scotland', 'IndyRef2']
['Brexit']
['EU', 'Brexit']
[]
['Brexit']
['Brexit']
[]
[]
['thinktanks', 'policy', 'Brexit', 'antisemitism', 'racism']
['Brexit']
['Brexit', 'BrexitBetrayal', 'VoteUKIP', 'VoteThemOut', 'WTOBrexit', 'LeaveMeansLeave', 'LeaveEU']
[]
['Brexit', 'WA']
['Brexit', 'UnionEuropéenne']
['PMQs', 'BrexitShambles', 'brexit', 'ScotlandIsNow']
[]
['Brexit']
['Brexit']
['Brexit', 'Corbyn', 'JeremyCorbyn', 'Labour', 'May', 'TheresaMay', 'TheresaMaySpeech', 'TheresaMayStatement']
['Brexit']
['Brexit']
['Leeds', 'Brexit']
['Brexit']
['Brexit']
['Brexitconcerns', 'Brexit', 'NIrights']
['Brexit']
['Brexit']
[]
['Brexit']
['TheBWord', 'Brexit']
[]
['UnionEuropéenne', 'Brexit']
['Brexit', 'PeoplesVote']
['StopBrexit', 'Remain', 'EU', 'Brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'UnionEuropéenne']
[]
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'LoanChargeDelay']
['Brexit']
['Brexit']
['SNP', 'PMQs', 'Brexit']
[]
[]
['Brexit']
['Brexit', 'Brextension']
['Brexit', 'LoanChargeDelay']
['visados']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['pmqs', 'brexit']
[]
['Brexit']
['EPlenary', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['PeoplesVote']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
['PMQs', 'Labour', 'Brexit', 'TMay']
[]
['eplenary', 'brexit']
['Brexit']
[]
['Brexit']
['GBPUSD', 'May', 'Corbyn', 'Brexit', 'Currency', 'Trading', 'Forex', 'FX', 'Markets', 'Euro', 'EuroZone']
['Brexit']
['brexitdivide', 'axewound', 'brexit']
[]
['Brexit']
['FinalSay']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['RankedChoiceVoting']
['Nrexit']
['Brexiting']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Bruxelles', 'UniuneaEuropeană', 'BrexitNoDeal']
[]
[]
['Brexit']
['Roma', 'firme', 'redditodimaternità', 'rdm', 'Parlamento']
[]
['Brexit']
['Brexit']
['Brexit', 'LoanChargeDelay']
[]
[]
[]
['Brexit']
['Brexit']
['Europaparlament']
['Brexit']
['Brexit']
['BRExit']
['Afrikapolitik', 'Brexit']
['Brexit', 'GreaterManchester']
['Brexit']
['Brexit', 'NigelAdams']
[]
[]
[]
[]
[]
['Brexit', 'BrexitBetrayal']
[]
['brexit']
['BRExit']
['Brexit']
[]
[]
['KalankTrailer', 'Brexit']
['Brexit']
['Brexit']
['brexit', 'research']
['Brexit']
[]
[]
['timeline', 'Brexit']
[]
['Brexit']
['Brexit']
['dax', 'ftse', 'forex', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['nodeal', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['brexit', 'NoDeal']
[]
[]
['WednesdayWisdom', 'Remainer']
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
['Scotland', 'Brexit', 'indyref2', 'DissolveTheUnion']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['brexit', 'EPlenary']
['Brexit']
[]
['Brexit']
[]
[]
['algerie', 'Bouteflika', 'manifestation', 'Brexit']
['Brexit']
['Brexit', 'BrexitShambles']
[]
['Brexit']
['Brexit']
['Brexit', 'SaveMusic']
[]
['Brexit']
['Brexit', 'Tea']
['Brexit']
['TheresaMay', 'NoDeal', 'Brexit', 'inViVaVoce', 'Radio1']
['brexit', 'fedup', 'cancer']
['Brexit']
['Brexit', 'BrexitVote', 'PMQs']
['pmqs', 'brexit']
['Brexit']
['Schengen']
[]
['Brexit']
['Brexit']
['pmqs', 'brexit']
[]
['Brexit', 'LoanChargeDelay']
[]
['Brexit', 'EZB']
['Brexit']
['Brexit']
[]
['Brexit', 'LoanChargeDelay']
['Brexit']
['Brexit']
['Brexit']
['EUCO', 'Brexit']
[]
['Brexit']
['Brexit']
['tax', 'trade', 'Brexit', 'PINGConference2019']
['Brexit']
['brexit']
['Brexit', 'LoanChargeDelay']
['Brexit']
['ToryMess', 'Brexit']
['NastyParty']
['Brexit', 'FedUpVoter', 'HappySquawker']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'trascina']
['Marshall', 'Brexit', 'taxes', 'Carillion', 'Government']
['Brexit', 'VoteLeaveBrokeTheLaw', 'vultures', 'ReverseColonisation']
[]
['Westminster', 'chemicals', 'technology', 'property', 'Thinktank', 'Brexit']
[]
['dax', 'ftse', 'forex', 'Brexit']
['PMQs', 'BrexitShambles', 'brexit', 'ScotlandIsNow']
['Brexit']
['Brexit']
['EUCO', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'Noticias1A3N']
['Brexit']
[]
[]
['Brexit']
['Brexit', 'Charlatan']
['Brexit']
['Brexit']
[]
['Brexit', 'ComDéfenseSénat', 'ComAfEurSénat']
['PINGConference2019', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['CustomsUnion']
['Brexit']
['dkbiz', 'dkpol', 'Brexit']
[]
['Brexit']
['FarRightExtremism']
['brexit', 'brexitFraud', 'brexitCrines', 'putin', 'russianMoney', 'electoralCrimes', 'coverUP']
['PINGConference2019', 'Brexit', 'Pharma']
[]
['europeanunion', 'brexit', 'unitedkingdom', 'work', 'trade']
[]
[]
['PeoplesVote']
['Brexit']
['Brexit']
['nodeal', 'Brexit']
[]
['CustomsUnion']
['Bolsonaro', 'FIESP', 'SPnoAr', 'brasil', 'G1', 'Senado', 'china', 'india', 'russia', 'venezuela', 'nytimes', 'chile']
['Brexit']
['Brexit']
['brexit']
[]
['Brexit']
['York', 'Brexit']
['Brexit']
[]
['Brexit']
['CustomsUnion']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['brexit']
['Brexit']
['Brexit']
['EU', 'ClimateChange']
[]
[]
['brexit', 'NoDeal']
['UE', 'Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit', 'Corbyn', 'TerryMayhem', 'Francois', 'PeoplesVote']
['Brexit']
['Brexit', 'PeoplesVote']
[]
[]
['Brexit', 'RevokeArticle50']
['gold', 'Brexit']
[]
['BrexitShambles', 'Brexit', 'GeneralElectionNow', 'cabinet', 'TheresaMay', 'Newsnight']
['brexit']
[]
['Brexit']
[]
[]
['Brexit', 'RevokeA50']
[]
['Brexit']
['Brexit', 'LoanChargeDelay', 'STOPtheLoanCharge', 'SaveLives']
['Europaparlament']
['FarRightExtremism']
[]
['Brexit']
['Brexit']
[]
['Brexit']
[]
['PMQs', 'Brexit']
['Brexit', 'Politics', 'TheresaMay', 'BusinessNews']
['Brexit']
['NewportWest', 'Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit', 'Corbyn']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
[]
['Brexit']
[]
['Brexit']
[]
['EUCO', 'Brexit']
['Brexit']
['FinalSay']
['Brexit', 'PeoplesVote', 'RevokeArticle50']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
['yawn', 'gif', 'Brexit', 'larrythecat']
['Brexit']
['Brexit']
[]
[]
['FarRightExtremism']
['Brexit', 'LoanChargeDelay']
['MP', 'Brexit', 'Tory', 'Labour', 'SNP', 'Libs', 'CrimesAgainstSociety', 'NODEAL', 'NOCHUKA', 'ComeBackNick']
['Brexit']
[]
[]
[]
['brexit']
['Brexit']
['Brexit']
['FreedomOfMovement', 'Brexit']
['Brexit']
[]
['editorial', 'cartoon', 'brexit', 'privateeye', 'UK', 'satire', 'politics', 'politicalcartoons', 'election', 'Labour', 'Tory', 'comics']
[]
['Corbyn', 'May']
[]
['Brexit']
['Brexit']
['PMQs']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
['Brexit', 'LoanChargeDelay']
['Brexit', 'BrexitVote', 'PMQs']
['Gove', 'VoteLeave', 'hedgefunds', 'EUreferendum', 'Brexit', 'chaos']
['Brexit']
['Brexit']
['Brexit', 'DavidLaws', 'outsourcing', 'govt', 'privatisation', 'CorporateWelfare']
[]
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
[]
['Brexit']
['Brexit']
['brexit', 'research']
[]
[]
[]
['brexit', 'StrajkNauczycieli']
['Brexit']
['Brexit', 'Schengen', 'visa']
['derrygirls']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
['MP', 'Brexit', 'Tory', 'Labour', 'SNP', 'Libs', 'CrimesAgainstSociety', 'NODEAL', 'NOCHUKA', 'ComeBackNick']
['Brexit']
['Leave', 'Brexit']
['Brexit']
[]
['Brexit']
[]
['NoDealBrexit']
[]
['Brexit']
['Brexit']
['SaveMusic', 'Brexit', 'BrexitVote']
['Brexit']
['Brexit']
[]
['huumori', 'meemit', 'brexit', 'LM', 'Kaleva']
['Brexit']
['Brexit']
['BRExit']
['Brexit']
[]
['PopolodellaFamiglia', 'PdF', 'redditodimaternità', 'rdm', 'vita', 'famiglia', 'Parlamento']
['Brexit']
['RoyaumeUni', 'Brexit', 'Economie']
['Brexit']
[]
['Brexit', 'remain', 'weloveyou', 'MinistryOfSillyWalks']
['BRExit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['BritishArmy', 'Corbyn', 'JoCox']
['Brexit']
[]
['brexittantrums', 'Brexit', 'motherofparliaments']
[]
['Brexit']
['Brexit']
[]
['BRExit']
[]
['Brexit']
['Brexit']
[]
['Brexit', 'TheresaMay']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['brexit', 'NoDeal']
['brexit']
['Brexiting']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Brexiteers']
['Brexit']
['CustomsUnion']
[]
[]
['Brexit']
[]
['brexit']
['Brexit']
['nodeal', 'Brexit']
[]
['ECB', 'UK', 'Brexit']
['Brexit', 'Brexitcast']
['Brexit']
[]
['UKIP', 'Brexit', 'NoDeal', 'Leave', 'EU', 'PMQs']
['WielkaBrytania', 'UE']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
[]
[]
[]
['Brexit']
[]
['Brexit', 'UnitedKingdom']
['EU']
['Brexit', 'SNP']
['Brexit']
['Brexit', 'Polish', 'StopBrexit']
['Brexiting', 'Brexit']
[]
[]
[]
['brexit']
['Brexit']
[]
['brexit']
['nodeal', 'Brexit']
['Brexit', 'FPTP']
['Brexit', 'Corbyn', 'Labour', 'EU', 'BrexitAlliance']
['Brexit']
['Brexit']
[]
[]
[]
[]
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit', 'commercialproperty', 'BrexitHub', 'BrexitandBeyond']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['housebuilding', 'brexit', 'ukgovernment', 'construction', 'showhouse', 'ukconstruction', 'housebuilders']
['Brexit']
['Brexit']
[]
['May', 'Brexit', 'BrexitBetrayal', 'sellout', 'Tories']
['brexit']
[]
[]
['Brexit']
['Brexit']
[]
[]
[]
[]
['Brexit']
['Brexit']
['labour', 'Brexit']
['Brexit']
['Opinion', 'Brexit']
[]
['JeremyCorbyn', 'referendum', 'Brexit', 'PeoplesVote', 'UKpoli']
['Brexit']
['Brexit']
['brexit']
['brexit', 'AprilFools']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit', 'Schengen']
['labCon', 'Brexit']
[]
['Brexit']
['Brexit']
['FinalSay']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
[]
['digitaleconomy', 'Brexit', 'DigitalIndex17']
['distresseddebt', 'Brexit']
['Brexit']
[]
['Brexit', 'trade']
['Brexit']
['Brexit']
['Brexit']
['EU', 'Brexit']
[]
[]
['brexit', 'TheresaMay', 'corbyn']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['BREXIT', 'NewSkill', 'CandleLovers', 'SoyWax']
[]
[]
['Brexit']
[]
['Brexit']
[]
['Southend']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['knifecrime', 'MOD', 'Brexit']
['Corbyn', 'May']
['Brexit']
['brexit', 'research']
['localgov', 'Brexit']
['Brexit', 'news']
['Brexit']
[]
['Brexit', 'Corbyn', 'WTONow']
[]
['NastyParty']
[]
['Brexit']
['Brexit']
['Leeds', 'Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
['brexit', 'loesje']
['Brexit', 'BrexitVote', 'PMQs']
['Brexit']
['Brexit', 'vegan']
['Brexit', 'BrexitChaos', 'BrexitVote']
['Brexit']
['FinalSay']
['Brexit']
['Brexit']
['Putin', 'Russia', 'USA', 'Merkel', 'Memes', 'Brexit', 'China', 'EU', 'FakeNews', 'market', 'Finance']
['FarRightExtremism', 'Brexit', 'EU', 'FutureOfEurope']
[]
['Brexit']
['Amazon', 'HMRC', 'HMTreasury']
['Brexit']
['KalankTrailer', 'Brexit']
['Brexit', 'BrexitDay']
['Brexit']
[]
['PeoplesVote', 'CommonMarket2', 'Brexit']
['FinalSay']
['Corbyn', 'eurozpravycz', 'brexit', 'TheresaMay']
['HateSpeech', 'hatemonger', 'Sociopath', 'psychosis', 'deranged', 'brexit', 'compromise']
['brexit', 'research']
['Últimahora']
['Brexit']
['Brexit']
[]
['Brexit', 'EUCO']
['Brexit']
['EUref', 'Brexit']
['Brexit']
['VoteLabour', 'VotesAt16', 'Brexit', 'ToriesOut', 'JC4PM']
['FinalSay']
['Leave', 'LeaveEU', 'Brexit', 'ROADKILL']
['Brexit']
['Brexit', 'May', 'Großbritannien']
['Brexit']
['Brexit', 'Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit', 'Putin', 'Fascism', 'Nationalist']
['Montrachet', 'HouseofCommons', 'brexit']
['Brexit', 'EU']
['Brexit']
['Brexit']
['Brexit']
['ComDéfenseSénat', 'Brexit']
[]
['Brexit']
[]
['Brexit']
[]
['EUCO', 'Brexit']
['Brexit', 'StopBrexitSaveBritain', 'RevokeRemainRebuildReform', 'NobodyVotedToBePoorer', 'PutItToThePeople']
[]
['Brexit']
['NewportWest', 'Brexit']
['Brexit', 'vegans']
[]
['Brexit']
['EUelections2019']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['NastyParty']
['vote', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['UK', 'may', 'brexit', 'epicfail']
[]
['ECB', 'UK', 'Brexit']
['EUCO', 'Brexit']
['PMQs', 'PMQs']
[]
['Brexit']
[]
[]
[]
[]
['EU', 'ClimateChange']
['NastyParty']
[]
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['JeremyCorbyn', 'MAGA', 'foxnews', 'cnn', 'msnbc', 'nytimes', 'washingtonpost', 'politico', 'ushouse', 'ussenate', 'dnc', 'usatoday', 'Brexit', 'Britian']
['FinalSay']
['Brexit']
['PeoplesVote', 'Brexit', 'PeoplesVote']
[]
['Brexit']
['Brexit']
['Eplenary', 'ResistanceUnite', 'TheResistance', 'Brexit', 'Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
[]
['jeremycorbyn', 'Corbyn', 'UK', 'brexit', 'terrorism']
['SaudiArabia', 'MBS', 'VanityFair', 'Brexit']
[]
['Brexit', 'UK', 'EU']
['nodeal', 'Brexit']
['Brexit', 'EU', 'PoliticalDeclaration']
['Brexit']
['BREXIT']
['Opinion', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Newsnight', 'PoliticsLive', 'Brexit', 'PMQs']
['brexit']
['Brexit']
[]
['Brexit']
['PeoplesVote']
['Brexit']
['Brexit']
['Indigonomics', 'Brexit']
[]
['Brexit', 'Euro']
['distresseddebt', 'Brexit', 'investors', 'distressed', 'restructurings']
['Brexit']
['Brexit']
[]
['Brexit', 'disunitedkingdom', 'RevokeArticle50', 'PeoplesVote']
[]
['brexit']
['Article50', 'Brexit']
['Brexit']
['Gibraltar']
['Brexit']
[]
['Brexit']
['Opinion', 'Brexit']
['Brexit']
['Brexit']
['NationalWalkingDay', 'brexit']
['Brexit']
['Brexit']
['PMQs']
['Article50', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['brexit']
['Brexit']
['Brexit']
['FinalSay']
['Brexit']
['brexit']
['brexit', 'twiceconsulting']
['UE']
['PeoplesVote', 'RevokeArticle50', 'FBPE', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'UK', 'WithdrawalAgreement']
['realestate', 'Chinese', 'Brexit', 'Juwai']
['Brexit']
['Brexit']
['Nexit', 'Brexit']
[]
['Brexit', 'PlenPE']
[]
['Brexit', 'UK', 'WithdrawalAgreement']
['Brexit']
['Brexit']
['brexit']
['MFF', 'Article7', 'SDGs']
['Brexit']
['Brexit']
[]
['Gov', 'Fakenews', '3lions', 'Brexit', 'MAGA']
['FinalSay']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'BrexitShambles']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['PMQs', 'Brexit', 'RevokeA50']
['Brexit']
['Brexit', 'construction', 'finance']
['Brexit', 'BrexitNoDeal', 'UE']
['Brexit']
['Brexit', 'BrexitVote', 'PMQs']
['Brexit']
['labour', 'Brexit']
['Brexit']
['Brexit']
['Labour', 'Brexit']
['Brexit', 'PeoplesVote']
['Brexit', 'GameOver']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'Corbyn', 'Labour', 'EU', 'BrexitAlliance']
['EPlenary', 'Brexit']
['Brexit']
['brexit', 'NoDeal']
['PutItToThePeople', 'Brexit']
['Brexit']
['Berlin', 'brexit', 'NoDeal']
['Article50', 'Brexit']
['Brexit']
['FinalSay']
[]
['Brexit']
['brexit', 'NoDeal']
['Brexit']
['Brexit']
['nodeal', 'Brexit']
[]
['Opinion', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Leave', 'Brexit']
['NicolaSturgeon', 'TheresaMay', 'Brexit']
['Brexit']
['Remain', 'LeaveEU', 'RespectTheVote', 'leavemeansleave', 'Brexit', 'BrexitShambles', 'PMQs', 'Leave']
['labour', 'Brexit']
['Brexit', 'BrexitShambles', 'LeaveEU', 'leavemeansleave']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'NoDeal']
['Brexit', 'ANEibergenNeede']
['BrexitParty', 'brexit']
['Brexit']
['Brexit', 'PMQs']
[]
['Brexit']
['brexit', 'lego']
['Brexit']
['Brexit', 'BrexitVote', 'PMQs']
[]
['Brexit', 'BrexitBetrayal', 'VoteUKIP', 'VoteThemOut', 'WTOBrexit', 'LeaveMeansLeave', 'LeaveEU']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'Schengen']
['Brexit']
[]
['Brexit', 'CooperLetwin']
['Brexit']
['animals']
['Brexit']
['PMQs', 'Brexit']
['Brexit']
[]
['brexit']
[]
['NoDeal', 'Brexit']
['FinalSay']
['Brexit']
['Brexit']
['Brexit']
['USI19', 'Brexit', 'Europe4Citizens']
['Brexit']
['Brexit']
['Brexit']
['ECB', 'UK', 'Brexit', 'EURGBP']
['RT', 'gold', 'silver', 'stocks', 'trading', 'trades', 'markets', 'Investing', 'today', 'rich', 'education', 'hope', 'dreams', 'Giveaway', 'free', 'positivity', 'focus', 'goals', 'life', 'money', 'success', 'fun', 'levelup', 'brexit']
['Brexit']
['AskFarage', 'Accountability']
['Brexit']
['FinalSay']
[]
[]
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit', 'logistics', 'ports', 'customs', 'SupplyChains']
['Brexit']
['Brexit', 'ExtinctionRebellion']
['UK']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'M5S']
['Labour', 'Brexit', 'Corbyn']
['EU']
['brexitdivide', 'axewound', 'brexit']
[]
['Brexit']
['Brexit']
['EPlenary', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'BrexitVote', 'PMQs']
[]
['Brexit', 'SwissBreakfast']
['Brexit', 'Welfare', 'Poverty', 'PMQs']
['brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['NewportWest', 'Brexit']
['EUCO', 'Brexit']
['Brexit']
[]
['Jinek', 'Brexit', 'Europa']
['Brexit']
['Brexit']
['Brexit']
['NoSurrender', 'Brexit', 'NoDeal', 'NoDealBrexit', 'WTOBrexit', 'TreasonMayMustGo']
['brexit']
['Brexit']
['PMQs']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['MP', 'Brexit']
[]
[]
['brexit', 'NoDeal']
['Menschen', 'Brexit', 'Propaganda', 'Manipulation', 'Demokratie']
[]
['brexit']
['PeoplesVote', 'Brexit', 'FBPE']
['Brexit']
['Brexit']
['brexit']
['Brexit', 'saga', 'bioeconomy', 'David', 'Newman']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'UK', 'EU']
['Politics', 'government', 'Brexit', 'students', 'ebooksforFE']
[]
[]
['Brexit']
['Berlin', 'brexit', 'NoDeal', 'PeoplesVote', 'CancelBrexit']
['Brexit']
['Brexit']
['Brexit']
['Southend']
['Brexit', 'Schengen', 'visa']
['Corbyn', 'Brexit']
['Brexit', 'PeoplesVote', 'CountryOverParty']
['TuesdayReview', 'Brexit', 'Forex', 'FXPRIMUS']
['Brexit']
['Brexit']
[]
['AskFarage', 'Accountability', 'brexit', 'indyref2', 'rt', 'bbc', 'MyMoney']
['brexit']
['Brexit']
['Cabinet', 'brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'PMQS']
['Brexit']
['Brexit']
['Amazon', 'HMRC', 'HMTreasury']
[]
['Brexit']
['EUCO', 'Brexit']
['Brexit', 'customs', 'europeanunion', 'trade', 'importexport']
['Brexit']
['Brexit']
[]
['Brexit']
['EUCO', 'Brexit']
['brexit']
['brexit']
['brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['EUCO', 'Brexit']
[]
['Brexit']
[]
['Brexit']
['Fragestunde', 'britischen', 'Unterhaus', 'Brexit', 'EU', 'Großbritannien', 'TheresaMay']
['Brexit']
['Brexit', 'UK', 'WithdrawalAgreement']
['Brexit']
['FinalSay']
[]
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
['NastyParty']
['Brexit']
['EU', 'WTO', 'TheresaMay', 'Corbyn', 'Brexit', 'NoDeal']
['Brexit', 'PeoplesVote']
['Brexit']
['EUCO', 'Brexit']
[]
['Brexit']
['TheresaMay', 'Brexit', 'Labour']
['Brexit']
['Juncker', 'brexit']
['Brexit', 'BrexitDeal']
['Brexit']
['Brexit', 'BrexitVote', 'PMQs']
[]
['FreedomOfMovement', 'Brexit']
['EU']
['Brexit']
['pmqs', 'brexit']
['Brexit', 'PMQs']
['Brexit']
['brexit', 'NoDeal']
['FinalSay']
['Brexit', 'Boutexit', 'Algérie', 'Algeria', 'Bouteflika']
['Brexit']
['brexit']
['Brexit']
[]
['employment']
['Brexit']
['Brexit', 'DerryGirls']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['todaysor']
['Brexit']
[]
['stockmarket', 'China', 'Trade', 'Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
[]
['Brexit']
['brexit', 'nodealbrexitdebate']
['Brexit']
[]
['CharlieHunnam', 'Brexit']
['FinalSay']
['EU', 'ClimateChange']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'HMRC', 'Brexit', 'Customs']
['Brexit']
['Brexit']
[]
['Brexit', 'UK']
[]
['Brexit', 'Altmaier']
[]
['Brexit']
['Brexit', 'BrexitShambles']
['Brexit']
['Brexit']
[]
['Brexit', 'TurismeCVMagazine']
['Brexit']
['Brexit', 'BrexitVote', 'PMQs']
[]
['Brexit']
['science', 'braindrain', 'dementia', 'Brexit']
[]
['Brexit', 'playingablinder', 'cunningplan', 'Democracy', 'longwaytogo']
['Brexit']
['Brexit']
['Brexit', 'Remainers']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['brexit']
['Brexit', 'triz']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit', 'BrexitMEPs', 'BrexitParty']
['brexitdivide', 'axewound', 'brexit']
['brexit']
['FinalSay']
['Brexit', 'PMQs']
['Brexit']
[]
['Brexit']
['BrexitBetrayal', 'brexit']
[]
['Brexit']
['Brexit']
['EU']
['EUCO', 'Brexit']
['brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Cabinet', 'government']
['EPlenary', 'Brexit']
['brexit']
['Últimahora']
[]
[]
['Brexit', 'PeoplesVote', 'Brexit']
['Brexit', 'BrexitVote', 'PMQs']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Corbyn', 'Britain', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['employment', 'employees', 'SMEs', 'BREXIT', 'salary', 'bonuses']
['brexit']
[]
['Brexit']
['Tory', 'jeremycorbyn', 'Brexit', 'JC4PM', 'ToryBrexitShambles', 'Conservatives']
[]
['Brexit']
[]
['Brexit']
['EUCO', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['alphanewslive', 'brexit']
['BRExit']
[]
['Brexit']
[]
[]
[]
['Brexit']
[]
['Brexit']
[]
[]
['Brexit']
['brexit']
['Brexit']
['brexit', 'NoDeal']
[]
['savelives', 'stoptheloancharge', 'brexit']
[]
['Brexit']
[]
[]
[]
['leavemeansleave', 'Brexit', 'RevokeArticle50', 'StopBrexit']
[]
['TheresaMay', 'Brexit']
['Brexit']
['PMQs']
['Brexit']
['PMQs']
['Brexit']
['Brexit']
['brexit', 'NoDeal']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['EUCO', 'Brexit']
[]
['BrexitShambles']
['Brexit']
['Plenum', 'Brexit', 'ZukunftEuropas', 'WorkLifeBalance', 'Erdgas', 'Straßentransport', 'EU', 'Schengen']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'UK', 'EU']
['NastyParty', 'PMQs', 'Skypapers', 'Newsnight', 'Brexit', 'Bbcqt', 'C4News']
[]
[]
['Brexit', 'PMQs']
['FinalSay']
['Juncker', 'Brexit']
[]
[]
['Brexit']
['Brexit']
['EU', 'Brexit', 'PeoplesVote']
['Brexit']
['Brexit', 'M13325']
['May', 'UE', 'Brexit']
['farmisorganic', 'brexit']
['Brexit']
['Brexit']
['Brexit', 'solarpower']
['Amazon', 'HMRC', 'HMTreasury']
[]
['Brexit']
[]
['MP', 'Brexit', 'Tory', 'Labour', 'SNP', 'Libs', 'CrimesAgainstSociety', 'NODEAL', 'NOCHUKA', 'ComeBackNick']
[]
[]
['Brexit']
['Brexit']
['Brexit', 'PMQs']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['NastyParty']
[]
['Brexit']
['PeoplesVote']
['Brexit']
['Brexit']
['Juncker', 'Brexit', 'EU']
['EPlenary', 'Brexit']
['Brexit']
['Brexit', 'CleanBrexit', 'PoliticsLive', 'wato', 'bbcnews', 'skynews', 'C4News', 'bbcpm']
[]
['Brexit']
['Brexit', 'Euro', 'EURUSD', 'Analysis']
['Brexit']
['labour', 'Brexit']
['Brexit', 'workforce']
['Brexit', 'PMQs']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'BrexitVote', 'PMQs']
['Brexit', 'UK', 'WithdrawalAgreement']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'AnishKapoor']
['Brexit']
['NoDeal', 'UK', 'Article50']
['EUCO', 'Brexit']
['Brexit']
[]
['Brèxit']
['Brexit']
['BrexitSeason2', 'Brexit']
['nodeal', 'brexit']
['BREXIT', 'crafts', 'crochet']
['nodeal', 'Brexit']
['Brexit', 'MBGA', 'MAGA', 'WWG1WGA', 'WeAreTheNewsNow']
['Brexit']
['HMRC']
['brexit']
['Cabinet', 'brexit']
['PeoplesVote']
[]
['EU', 'border', 'brexit']
['Brexit']
['Brexit', 'Hyckleri', 'swexit', 'EU', 'svpol']
['Brexit']
[]
['RevokeArticle50', 'PeoplesVote', 'Brexit']
['extrDroite']
['brexit']
['EUelections2019']
['Brexit']
[]
['Google', 'Brexit']
['Brexit', 'May']
['ComDéfenseSénat', 'Brexit', 'PIB']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'NoDeal']
['brexit', 'streetart']
[]
['Brexit']
['brexit', 'ERG', 'BrexitChaos']
['Brexit']
['brexit', 'SOS']
[]
['Brexit']
['Bromley', 'Brexit', 'CuratingLDN']
['Brexit']
[]
['Brexit']
[]
['MP', 'Brexit', 'Tory', 'Labour', 'SNP', 'Libs', 'CrimesAgainstSociety', 'NODEAL', 'NOCHUKA', 'ComeBackNick']
['Europawahl', 'Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Remainer', 'Remainer', 'Brexit']
['EU', 'ClimateChange']
['Brexit']
['Brexit', 'ECB']
['Brexit']
[]
['Brexit']
['TheresaMay', 'Brexit', 'Tory']
['Brexit']
[]
[]
['brexit', 'NorthernIreland']
['Brexit']
[]
['brexit', 'shitshow', 'TimeToGo']
['NoDeal', 'Brexit']
['Brexit', 'PMQs']
['Brexit']
['Brexit']
[]
['brexit', 'research']
['Brexit']
['Brexit']
['EU', 'Brexit', 'RevokeArticle50']
['EUCO', 'brexit']
[]
['Brexit', 'Juncker']
[]
['Brexit']
['brexit', 'EPlenary']
['NoToRacism', '3aprile', 'Brexit', 'BrexitVote', 'BrexitShambles', 'brexitstorm', 'junker', 'barnier', 'eu', 'ue', 'ecb', 'bce', 'esm', 'May', 'Corbyn', 'Adams']
['British']
[]
['Brexit']
['Brexit']
['Remainer']
['Brexit']
['NewportWest', 'Brexit']
[]
[]
['nodeal', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['BBCTW', 'Brexit']
['yawn', 'gif', 'Brexit', 'larrythecat']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'LoanCharge', 'StopTheLoanCharge', 'LoanChargeScandal', 'HMRCHumanCost', 'SaveLives']
['Brexit', 'Trump']
['brexit']
['Brexit', 'Brexiteers']
['newwork', 'brexit', 'cabaret']
['Brexit']
['brexit']
['Brexit']
['Brexit', 'LoanChargeScandal']
['Brexit']
['FinalSay']
['Amazon', 'HMRC', 'HMTreasury']
['Brexit']
['Brexit', 'BrexitVote', 'PMQs']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['MFF', 'Article7', 'SDGs']
['brexit']
['Brexit']
['FreedomOfMovement', 'Brexit']
['Brexit']
[]
['BREXIT']
['EUCO', 'Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
[]
['standup4brexit', 'Brexit', 'letsgowto']
['varadkar', 'brexit']
['Brexit', 'PMQs']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Eurozone', 'Politics', 'Brexit']
[]
[]
['UE', 'Brexit']
[]
[]
['NoDealBrexit']
['Brexit']
['Brexit']
['Brexit']
['Journalist101', 'brexit']
['Brexit', 'NoDeal']
[]
['Cabinet', 'brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['AliG', 'Brexit', 'BrexitShambles']
['Brexit']
['FinalSay']
['Brexit', 'PV', 'RevokeA50']
[]
['Brexit']
['Brexit']
[]
['Brexit', 'CooperLetwin']
[]
['brexit', 'NoDeal']
['CognacCapitalists', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Glastonbury']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['localgov', 'Brexit']
[]
['Brexit']
['brexit']
[]
[]
[]
['Corbyn', 'May']
[]
['UK']
['NoDeal', 'Brexit']
[]
[]
[]
['EPlenary', 'Brexit']
['LarasMum', 'WindrushCompensation']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['BlackCountry', 'Brexit']
['Brexit', 'PlenoPE']
['Brexit', 'PeoplesVote']
['Brexit']
['Brexit']
['PMQs', 'Corbyn', 'TheresaMay', 'brexit', 'JC4PM2019']
['GTTO', 'Brexit', 'RevokeArticle50']
['Brexit']
[]
['Brexit']
['Brexit']
['FinalSay']
['IanBlackford', 'Deluded', 'OutOfTouch', 'Brexit']
['Brexit', 'BrexitShambles']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'AnimalRights', 'environmentalrights']
[]
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
[]
[]
['UnitedKingdom', 'Brexit']
['Brexit']
['Juncker', 'Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexiteers', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Nrexit']
['Brexit']
['Labour', 'Brexit']
['Brexit']
['AB', 'Brexit', 'EU']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['JSE', 'cac40', 'DAX', 'AEX', 'psi20', 'Europe', 'Brexit', 'BordeauxFinance', 'forex', 'forextrading', 'USD', 'dollar']
['PMQs', 'Labour', 'Brexit']
['PeoplesVote']
[]
['brexit']
['Brexit']
[]
['Brexit']
['brexit', 'bombermissons', 'ww2', 'conservativeparty']
['Brexit', 'incompetent', 'customsunion']
['Brexit', 'PeoplesVote']
['Brexit']
['Brexit']
[]
['brexit']
[]
[]
['Brexit']
['PMQs', 'RevokeArticle50', 'brexit', 'BrexitShambles']
['Brexit', 'May', 'Genova']
['Brexit']
['Brexit']
['Brexit', 'Asia']
['Brexit', 'EUcommission']
['Brexit', 'PMQs']
['TheresaMay', 'JeremyCorbyn']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'NoDeal']
['FinalSay']
['Brexit']
['Brexit']
['MFF', 'Article7', 'SDGs', 'EUCO', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'brexit', 'nodeal']
['brexit', 'Marxist']
['Großbritannien', 'EU', 'Brexit', 'BrexitShambles']
['Brexit', 'FinTech', 'PMI']
['Brexit', 'EU', 'UK', 'Democracy']
['vaginalmesh']
['Brexit', 'PMQS']
[]
[]
['Brexit']
['PMQs', 'Brexit']
['Brexit', 'PMQs']
['Brexit']
['Brexit']
['PeoplesVote']
['FinalSay']
['Brexit']
['brexit', 'research', 'BrexitKillsUKResearch']
['brexit']
['Brexit']
['Brexit']
['digitaleconomy', 'Brexit', 'DigitalIndex17']
['Brexit']
['Brexit']
['Brexit', 'Boutexit', 'Algérie', 'Algeria', 'Bouteflika']
['Article13', 'brexit']
['British']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
['Brexit']
['BREXIT', 'CandlLovers', 'NewSkills', 'WhatYouDo']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['EUCO', 'Brexit']
['Brexit', 'StandUp4Brexit', 'LetsGoWTO', 'outnow']
[]
['ERG', 'Brexit', 'Chequers']
['Brexit']
[]
['brexit']
['BritishArmy', 'Corbyn', 'JoCox']
['Brexit']
[]
[]
['Juncker', 'Brexit', 'TheresaMay']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['calgipartners', 'investinginyourfuture', 'bankingstocks', 'brexit', 'stockmarkets', 'hedgefund']
[]
['Brexit']
[]
['economic']
['Brexit']
['Brexit']
['NewportWest', 'Brexit']
['EUmigrationForum']
[]
['PeoplesVote', 'Brexit', 'referendum']
['Brexit']
['Brexit']
['BRExit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['brexitdivide', 'axewound', 'brexit']
['Brexit', 'brexitextension']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['pmqs', 'brexit']
['Brexit']
['EUCO', 'Brexit']
['Britons', 'EuropeanUnion']
['Brexit']
[]
['Brexit']
['Brexitcast', 'BrexitChaos', 'Brexit', 'TuesdayThoughts']
['Brexit']
['Brexit', 'CooperLetwin']
['Brexit', 'brexit']
['Brexit']
['Brexit']
['Brexit']
['May', 'brexit']
['Brexit']
['Brexit', 'Briten', 'EU']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'leavemeansleave']
['Brexit']
['Brexit']
[]
['quitters', 'brexit', 'Badly']
[]
[]
['Brexit', 'StandUp4Brexit', 'LetsGoWTO']
['Precampaña', 'Cloacas', 'Brexit', 'Argelia', 'Siria']
[]
[]
['Brexit']
['Brexit']
['Britons', 'EuropeanUnion', 'Brexit']
['TherseaMay', 'JeremyCorbyn', 'Brexit']
['Brexit']
[]
[]
['pmqs', 'brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['EU', 'Brexit', 'PeoplesVote']
[]
['Brexit']
['Brexit']
['brexit']
['Brexit']
['BREXIT']
[]
['Brexit']
['Brexit', 'NoDeal', 'NoDealBrexit', 'WTOBrexit', 'NoSurrender']
['Brexit']
['Brexit']
[]
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit', 'UK', 'WithdrawalAgreement']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Amazon', 'HMRC', 'HMTreasury']
['Brexit', 'Corbyn']
[]
['Brexit']
['Brexit']
[]
['Brexit', 'Corbyn']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'UK', 'Germany']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'theresaMayStatement']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['PMQs', 'Brexit']
['Brexit']
[]
['Brexit']
[]
[]
['Brexit']
['Brexit', 'UniversalCredit']
[]
['Leavers']
['Brexit', 'freight', 'freightforwarding']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit', 'LeaveMeansLeave', 'Britain', 'UnitedKingdom']
['NoDealNoProblem', 'Brexit']
['Brexit']
['Brexit']
[]
[]
[]
['Brexit', 'ToryMess']
['Labour']
['Southend', 'Brexit']
['brexitdivide', 'axewound', 'brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit', 'PMQS']
[]
['Brexit']
[]
['brexit']
[]
['victorialive']
['EU', 'Brexit']
['Brexit']
[]
['ComFinSénat', 'entreprises', 'Brexit']
['Brexit']
['Brexit']
['Brexit', 'BrexitShambles', 'RevokeArticle50']
['Brexit']
['Brexit']
[]
['BE', 'Brexit']
['Brexit']
['Brexit', 'DeslizayDesbloquea']
[]
[]
['EPlenary', 'Brexit']
[]
['brexit', 'costs']
[]
[]
['Brexit']
['Brexit']
['AuthorConfession', 'Brexit', 'boom', 'ImpendingDisaster', 'NobodyVotedForThis']
['EU', 'Brexit', 'PeoplesVote']
[]
[]
['brexit']
['Brexit', 'Petition']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Leavers', 'Democracy', 'Brexit', 'Democracy', 'ParliamentVsThePeople', 'OurDayWillCome', 'Manchester', 'SeizeControl']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['brexit', 'BrexitShambles', 'Referendum']
['brexit']
['Brexit']
['Europaparlament']
[]
['Juncker', 'Brexit']
['Brexit', 'WithdrawalAgreement']
['eplenary', 'brexit']
['Article50', 'Brexit']
['Brexit']
[]
['Brexit', 'NHS']
['Brexit']
['brexit']
['Brexit']
['Wrocław', 'brexit', 'firma', 'uk', 'anglia', 'londyn', 'polska', 'biznes', 'finanse']
[]
['EU', 'ClimateChange']
['Brexit']
[]
['RankedChoiceVoting', 'Brexit']
[]
['διεθνή', 'brexit', 'eleftherostypos']
['Brexit', 'LoanChargeScandal']
['Brexit']
['Brexit']
['Brexterrorism', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Politics', 'voters', 'Democracy', 'HateSpeech', 'FakeNews', 'enclave', 'Brexit', 'BrexitVote']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'May', 'Großbritannien']
['brexit']
['British']
['Brexit', 'May', 'Genova']
[]
['Brexit']
[]
[]
[]
['Brexit']
[]
['Brexit']
['PeoplesVote']
[]
['Brexit']
['Corbyn', 'May', 'People', 'Brexit']
['Brexit']
['Brexit', 'FS']
['brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['IanBlackford', 'Deluded', 'OutOfTouch', 'Brexit']
['brexit']
[]
[]
[]
['Brexit']
['EU', 'ClimateChange']
['Brexit']
['Amazon', 'HMRC', 'HMTreasury']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['holidays']
['NOdeal', 'BREXIT', 'ERG']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'StandUp4Brexit', 'outnow']
['Brexit']
['PeoplesVote']
['Juncker', 'Brexit']
['economic', 'failure', 'political', 'leadership', 'UnitedKingdom', 'Brexit', 'BrexitShambles', 'TheresaMay', 'Britain']
['Brexit']
['NoDealBrexit', 'EU', 'brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
[]
['brexit', 'EPlenary']
['Brexit']
[]
['brexit', 'gibraltar']
['Brexit', 'Corbyn', 'Labour', 'EU', 'BrexitAlliance']
['Brexit']
[]
['Brexit']
['Brexit']
['EPlenary', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['BritishArmy', 'JeremyCorbyn', 'Brexit']
[]
[]
[]
[]
['brexit']
['democratie', 'europaistdieAntwort', 'future', 'BrexitVote', 'Brexit', 'Referendum', 'europe']
['Brexit']
['Brexit']
[]
['Nrexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit', 'EPlenary', 'citizensrights', 'Ireland']
['Brexit']
['PMQs', 'Brexit']
[]
['PMQS', 'Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['satire', 'news', 'begum', 'shemima', 'bored', 'brexit', 'clickbait', 'syria', 'is', 'islamicstate', 'politics', 'uk']
[]
[]
['NoDealBrexit']
['Brexit']
[]
['Brexit']
['brexit', 'thebigpicture']
['Calligraphy', 'painting', 'art', 'contemporaryart', 'drawing', 'sketch', 'brexit', 'extremists']
['Brexit']
['Brexit']
['brexit']
['Brexit']
[]
['Brexit']
['Dup', 'DUPleader', 'Sluggerotoole', 'Brexit', 'belfasttelegraph', 'RTEOne', 'oceanfm', 'LE19', 'ronanmccreevey']
['Brexit', 'NoDealBrexitNow']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit', 'DeslizayDesbloquea']
['Brexit']
['NewportWest', 'Brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['newsMedia', 'brexit', 'Government', 'Wasteofspace', 'MPs', 'nutup', 'Shutup', 'leave', 'Nodeal']
['Brexit']
['brexit']
['Brexit']
[]
['Brexit']
['brexit']
['Europe', 'nobrexit', 'brexit', 'London', 'UK', 'FBPE', 'Europa', 'EU', 'UE']
['Brexit']
['brexit', 'NoDeal']
[]
['Brexit']
['Brexit']
['brexit']
['Unterhaus', 'EU', 'Brexit', 'NoDeal', 'May']
['brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
[]
[]
['Brexit']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Tories', 'Brexit', 'JeremyCorbyn', 'BrexitShambles']
['Brexit']
[]
['Brexit']
['NewportWest', 'Brexit']
['Brexit']
['Brexit']
['pmqs', 'brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'UK', 'WithdrawalAgreement', 'EU']
['Brexit', 'EU', 'PoliticalDeclaration']
['Brexit']
['Brexit']
[]
[]
['Brexit']
[]
[]
['Brexit']
['Brexit', 'BrexitMayhem', 'youcantfixstupid']
['Brexit']
['Brexit']
[]
['Brexit', 'Niedersachsen']
['Brexit', 'PrimeMinister']
['BrexitBetrayal', 'LeaveMeansLeave', 'NoDealBrexit', 'Brexit', 'MayMustGo', 'RIPUKDemocracy']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
[]
['GTTO', 'Brexit']
[]
['Brexit']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['brexit']
['newsnight']
['brexit']
['Brexit', 'PoliticalPost']
['Brexit']
['MQT']
['Brexit']
['Brexit']
['EUCO']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['Brexit', 'EUxit']
[]
['Brexit']
[]
['EU', 'Brexit']
['Brexit']
['Brexit']
[]
['Nrexit']
['Brexit', 'Labour']
[]
['Brexit']
['FreedomOfMovement', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['EU', 'ClimateChange']
['Brexit']
['Brexit']
['Brexit']
['PMQs', 'Brexit', 'brexitstorm', 'BrexitShambles']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['ukip', 'Gibraltar', 'brexit', 'uk', 'nodeal']
['Brexit']
['Brexit']
['Brexit', 'TheresaMay', 'Conservatives']
['EUCO', 'Brexit']
[]
[]
['Brexshit', 'Brexit', 'Torys']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['PMQs']
['PeoplesVote', 'brexit', 'labour', 'PoliticsLive']
['brexit', 'gibraltar']
[]
['Brexit', 'Reigte']
[]
[]
['Brexit']
[]
[]
['nodeal', 'Brexit']
['foodinflation', 'Brexit']
['Nrexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit', 'Brexitcast']
['EEA', 'EFTA', 'Brexit']
['Brexit']
['Brexit']
['Brexit', 'mogged', 'pulpfiction']
['NationalPoetryDay', 'Brexit']
['EURUSD', 'Brexit']
['brexit']
['Brexit', 'RevokeA50']
['Brexit', 'Brexitcast']
['Brexit']
['BrexitBetrayal', 'LeaveMeansLeave', 'NoDealBrexit', 'Brexit', 'MayMustGo', 'RIPUKDemocracy']
['UK', 'Brexit']
['Remainer', 'Brexit']
['MoggMentum', 'Brexit']
['RevokeArticle50', 'brexit', 'MayMustGo']
['VictoriaLIVE', 'BBCbias', 'Brexit', 'NotOnMySide']
['Brexit']
['Brexit', 'Brexshit', 'RevokeArticle50']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Fact']
['Brexit']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['RevokeArticle50', 'MayMustGo', 'Brexit']
[]
['Brexit']
['UK', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
[]
['Brexit']
['Brexit']
['VictoriaLIVE', 'brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['Brexit']
[]
['Brexit']
['Article50', 'Brexit']
['Brexit']
['EU', 'Brexit']
['MQT']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit', 'BrexitWTO']
['Brexit']
['Brexit']
['Brexit']
['BREAKING', 'Brexit']
['brexit']
[]
['brexit']
['brexit']
['brexit', 'bestSlogan']
['Brexit']
['Brexit']
['brexit']
['ARTICLE50', 'ARTICLE50', 'ARTICLE50', 'ARTICLE50', 'ARTICLE50', 'ARTICLE50']
['Brexit', 'tattoomodel', 'tattoo', 'mentalhealthnursesday', 'MentalHealthAwareness', 'staystrong', 'MentalHealthMatters', 'beamazing']
['r4today', 'Brexit', 'RevokeArt50']
[]
['Brexit']
['Brexit']
[]
['EUCO', 'Brexit', 'EPP', 'Fidesz']
['Brexit']
[]
[]
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['RevokeArticle50', 'MargaretAnneGeorgiadou', 'Brexit', 'TheresaMay', 'MayMustGo']
['brexit']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['RevokeArticle50', 'Brexit']
['Brexit', 'TheDrumArms']
['Brexit', 'construction', 'NFBnews', 'SMEs']
['ProjectFear', 'Brexit']
[]
['Brexit']
['EUCO', 'Brexit']
['Brexit', 'RevokeArticle50']
[]
['Brexit']
['Brexit', 'BrexSHIT']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['finalsayforall', 'Brexit', 'notallgeographers']
['Brexit']
['Brexit']
['Brexit', 'PeoplesVoteNow', 'RevokeArticle50']
['Brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
['Brexit']
['brexit']
['Brexit']
['Brexit', 'TheresaMay', 'RevokeArticle50']
['Brexit']
['Brexit']
['Brexit', 'BrexitNoDeal']
['seo', 'marketing', 'healthcareit', 'smallbusiness', 'Investing', 'Trading', 'Finance', 'HedgeFunds', 'MutualFunds', 'PrivateEquity', 'Portfolio', 'Assets', 'Income', 'Capital', 'money', 'ETF', 'Brexit', 'Defeat', 'latest', 'May', 'mean', 'news', 'Theresa', 'travel', 'Vote']
[]
['BrexitChaos', 'Brexit']
['Brexit', 'personalinjury']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'ChinaDailyCartoon']
['NoDeal', 'ScottishSix']
['Brexit']
[]
[]
['brexit']
[]
['Brexit']
['petition', 'nodeal', 'brexit', 'theresamay', 'BrexitShambles']
['trump', 'brexit']
[]
['Brexit']
[]
['EU', 'Brexit', 'RevokeArticle50']
['Brexit', 'RevokeArticle50']
['brexit']
['Brexit']
['Brexit', 'RevokeA50', 'Remain', 'Reunite']
['NotOnMySide', 'NotOnMySide', 'Brexit', 'austerity', 'NotOnMySide']
[]
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['BREXIT']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'demandbetter', 'teamwork']
['brexit']
['VictoriaLIVE', 'Brexit']
['Brexit']
['Brexit']
['EU', 'Brexit', 'FinalSay']
['Brexit']
['RevokeArticle50', 'brexit', 'TheresaMay', 'WorldPoetryDay']
['NotOnMySide', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Bercow', 'Arsenal', 'brexit']
['brexit']
[]
['Brexit', 'eu', 'GetOut']
['MoggMentum', 'Brexit']
['Brexit']
[]
['Brexit', 'TheresaMay', 'Westminster', 'Brussels']
[]
['Brexit']
['RevokeArticle50', 'Brexit']
['Brexit', 'RevokeArticle50']
[]
[]
['brexit']
['Brexit']
['Merkel', 'EU', 'Brexit']
['Immigrants', 'Brexit', 'uk']
['Brexit']
['Brexit']
['brexit', 'EU', 'Amazon']
['Brexit', 'EUCO', 'Art50']
['Brexit']
['EU', 'Brexit']
[]
['Brexit']
['Brexit', 'Remain']
['GordonHendersonMP', 'Brexit', 'notinthistogether']
['leave', 'EU', 'WTO', 'Enough', 'Brexit']
['Brexit']
['STOPCLANDESTINI', 'STOPINVASIONE', 'StopIslam', 'stopong', 'tolleranzazero', 'chiudiamoiporti', 'portichiusi', 'blocconavalesubito', 'iostoconsalvini', 'NessunoTocchiSalvini', 'italexit', 'frexit', 'grexit', 'nexit', 'brexit', 'stopEU', 'leaveEU', 'Stopsoros', 'SALVININONMOLLARE']
[]
['IPO', 'bourse', 'Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'RevokeArticle50']
[]
[]
[]
['BMW', 'Brexit']
['decentralization', 'Brexit', 'DigiByte', 'Blockchain']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Tory', 'SkyNews', 'Brexit', 'Britain']
['UE', 'Brexit']
['brexit']
[]
['Brexit', 'Prepare4Brexit']
['brexit']
['RevokeArticle50', 'Brexit']
[]
[]
['Brexit', 'Article50', 'EU']
['Brexit']
['Nottingham', 'Citizens', 'EU']
['Brexit']
['WorldPoetryDay', 'Brexit']
['NationalPoetryDay', 'Brexit']
['Brexit', 'BrexitWTO']
['shambles', 'brexit', 'expat']
[]
['Brexit', 'China']
[]
['Brexit', 'peoplesvote']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['SUTB', 'Brexit']
['Brexit']
['Brexit', 'Brexitcast']
['revoke', 'Brexit']
['Brussels', 'Stipend']
[]
['May', 'brExit']
['Brexit']
['Brexit', 'Gemeinschaftsdiagnose', 'Konjunktur', 'GD']
['BMW', 'Brexit']
['Brexit', 'May', 'EU']
[]
['Europe', 'UnitedKingdom', 'Politics', 'Brexit']
['bbcnews', 'itvnews', 'Skynews', 'Brexit', 'StandUp4Brexit', 'NoDeal', 'Parlament']
['europe', 'brexit', 'nodeal', 'uk', 'europe', 'uk']
['brexit']
['Brexit']
['Brexit']
['RevokeArticle50', 'Brexit', '3million']
['brexit']
['PME', 'Brexit']
[]
['Brexit', 'EUxit']
['Brexit']
['Brexit', 'DissolveTheUnion']
['brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['brexit']
['Brexit']
[]
[]
['brexit']
['brexit', 'vote']
['Brexit', 'Merkel', 'short', 'extension']
['Brexit']
[]
[]
['Brexit', 'EU', 'TheresaMaySpeech']
['Brexit', 'defence', 'security']
['brexit', 'remainernow']
['MoggMentum', 'Brexit']
['BBC', 'Brexit']
['Brexit', 'construction', 'NFBnews', 'SMEs']
['brexit']
['Brexit']
['brexit', 'strictly']
[]
['DataFest19', 'brexit', 'VoteLeave']
['Brexit', 'Brexit', 'PeoplesVote', 'FinalSay', 'BrexitBallot']
[]
['Brussels', 'Brexit']
['brexit']
[]
['Brexit']
['NewYorker']
['Brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['theresamay', 'Brexit', 'IndyRef2', 'BBCQT']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'farmers']
['brexit', 'indicativevote', 'politics']
['BrexitBetrayal', 'LeaveMeansLeave', 'NoDealBrexit', 'Brexit', 'RIPUKDemocracy']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['brokenBritain', 'RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
['Brexit']
['RevokeArticle50', 'Brexit', 'PeoplesVote']
['petition', 'parliament', 'brexit', 'remain', 'RevokeArticle50', 'stopbrexit', 'fbpe']
[]
['Brexit']
[]
['Brexit']
['UnBEARables', 'InfoSec', 'BREXIT', 'MAGA', 'AusPol', 'DEFCON']
['Brexit']
['brexit']
['Brexit', 'ExtinctionRebellion', 'SchoolStrike4Climate']
['Brexit']
['Brexit']
['brexit', 'petition', 'revokearticle50']
[]
[]
['EU', 'Brexit', 'FinalSay']
['Brexit', 'leadership', 'decisionmaking', 'moveon']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'PEOPLESvote']
[]
['Brexit']
['brokenBritain', 'RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
['Brexit', 'Brexit', 'PutItToThePeople']
['Brexit']
['willofthepeople', 'brexit', 'remain', 'nodeal']
[]
['Brexit', 'Kexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['BREXIT']
['brexit']
['Brexit']
['EUCO', 'brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
['Brexit']
['brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
['brexit', 'BrexitChaos']
['Brexit']
['BBC', 'brexit']
['Brexit']
['Brexit', 'BrexitShambles']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['brexit']
['Brexit']
[]
['Brexit', 'MayDay']
['Brexit']
['brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['BrExit', 'CMAE19', 'British', 'CriticalMessaging']
['Brexit']
['MoggMentum', 'Brexit']
['Brexit']
['Brexit']
['brexit']
['EU', 'Brexit', 'BrexitVote', 'FinalSay']
['brexit', 'RevokeArticle50']
['IntlEd', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['EU', 'Brexit', 'RevokeArticle50']
['RevokeArticle50', 'Brexit']
['Brexit', 'deVereNews']
['SeriousShortagesProtocol']
['Brexit']
[]
['RevokeArticle50', 'brexit']
['brexit']
[]
['EU', 'Brexit', 'FinalSay']
['STOPCLANDESTINI', 'STOPINVASIONE', 'StopIslam', 'stopong', 'tolleranzazero', 'chiudiamoiporti', 'portichiusi', 'blocconavalesubito', 'iostoconsalvini', 'NessunoTocchiSalvini', 'italexit', 'frexit', 'grexit', 'nexit', 'brexit', 'stopEU', 'leaveEU', 'Stopsoros', 'SALVININONMOLLARE']
['Brexit', 'NotOnMySide']
[]
['Brexit', 'PeoplesVote', 'SongForTreasa']
[]
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['corbyn']
['CJEU', 'revoke', 'Art50']
['theresa_may', 'Brexit', 'MayMustGo']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'farmers']
['Brexit', 'TheDrumArms']
['UK', 'WithdrawalAgreement', 'Bilderberg', 'EU', 'Nazi']
['MenTalkThursday', 'GIDITRAFFIC', 'Brexit', 'NairobiWordExplosion', 'Adenreleonikosi']
['Brexit']
['r4today', 'Brexit', 'RevokeArt50']
['Brexit']
['HughGrant', 'BrianCox', 'Article50']
['Brexit']
['MQT']
['UK', 'exporters', 'importers', 'Brexit', 'internationaltradeconf']
['BREXIT']
[]
['Brexit', 'Conservatives', 'ConservativeParty', 'Labour']
[]
['Brexit']
['dairylandscape', 'Brexit']
['Brexit']
['brexit', 'brexitpolling']
['brexit', 'nodeal', 'nobrexit', 'leave', 'petition', 'uk']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['BRexit']
[]
['Brexit', 'Petition']
[]
['IknewwhatIvoted4', 'brexit', 'independance', 'leaversorbritain']
['euro', 'dollar', 'florida', 'thursdaythoughts', 'brexit', 'currency', 'rates']
['Brexit']
['EU']
['brexit', 'BrexitChaos', 'BrexitShamble', 'UKPolitics', 'chaos', 'parlement', 'UK', 'BrexitMayhem', 'BrexitVote']
['BrexitMayhem', 'Brexit', 'BrexitShambles']
['Brexit']
['brexit']
['Brexit', 'strike', 'unemployed', 'underemployed']
['Brexit']
[]
[]
['politicslive', 'Brexit', 'brexitdeal', 'NoDealBrexit', 'brexitvote']
['STOPCLANDESTINI', 'STOPINVASIONE', 'StopIslam', 'stopong', 'tolleranzazero', 'chiudiamoiporti', 'portichiusi', 'blocconavalesubito', 'iostoconsalvini', 'NessunoTocchiSalvini', 'italexit', 'frexit', 'grexit', 'nexit', 'brexit', 'stopEU', 'leaveEU', 'Stopsoros', 'SALVININONMOLLARE']
['Brexit']
[]
['Brexit']
['brexit', 'brexshit']
['brexit']
[]
['Macron', 'Brexit', 'UE', 'France', 'francais', 'Finance', 'frexit']
['Brexit']
['brexit']
['brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'UKNationalsinNL']
[]
['Brexit']
['Brexit', 'PeoplesVote', 'RevokeArt50']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['UK', 'WithdrawalAgreement', 'Bilderberg', 'EU', 'Nazi', 'Brussels', 'RevokeArticle50', 'BrexitBetrayal', 'Brexit', 'ThursdayThoughts', 'WTO']
['CycloneIdai', 'Brexit', 'NewZealandShooting']
['brokenBritain', 'RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
['Brexit', 'British', 'politics', 'Westminster']
['Brexit', 'RevokeArticle50']
['Brexit', 'StopBrexit']
[]
['RevokeArticle50', 'UKGOV', 'Brexit', 'Theresamay']
[]
[]
['drugshortages', 'Brexit']
[]
['brexit']
['Brexit']
[]
[]
['Brexit', 'UK']
['Brexit', 'Fascism']
[]
['Brexit']
['EU', 'Remain', 'Brexit']
['Brexit', 'Business']
[]
['Brexit', 'Conservative']
[]
[]
['Brexit']
['r4today', 'Brexit', 'RevokeArt50']
[]
['Brexit']
[]
['Brexit', 'Fact']
['RevokeArticle50']
['Brexit', 'China']
['brexit']
['Brexit']
['Brexit', 'JC4PM2019', 'JC4PM']
[]
['corbyn']
['VictoriaLIVE', 'Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit', 'Advertising']
[]
['Brexit']
['Últimahora']
['Brexit', 'Frexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['Brexit', 'HostileEnvironment']
[]
['Brexit']
['Brexit']
['Málaga', 'Londres']
['article50', 'brexit']
['Brexit', 'Countdown2Brexit']
['WTO', 'Brexit']
['Britain', 'EU', 'Brexit']
['Brexit', 'Conservative']
['OlympicPark', 'CuratingLDN', 'Brexit']
['BrexitBunker', 'BrexitShamble', 'Brexit']
['EXIT', 'koomikim', 'brexit', 'bootleg', 'photograph', 'edge', 'book', 'goldleaf', 'publication', 'spec', 'soupdesign', 'plankton']
['TheresaMay', 'Brexit']
['Brexit']
[]
['victorialive', 'brexit']
['Brexit']
['brexit']
[]
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit', 'travel']
['brexit']
['Brexit', 'Remain', 'Brexiteers', 'Remoaners', 'PoliticsLive', 'Parlament']
[]
['Brexit', 'DataFest19', 'DataSummit19']
[]
['Maybegone', 'brokenBritain', 'RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
['Brexit']
['Brexit']
[]
['brexit']
[]
[]
['Brexit', 'May']
[]
[]
['MoggMentum', 'Brexit']
['Brexit']
[]
[]
['brexit']
[]
['Brexit']
['Nottingham', 'Citizens', 'EU', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['NotOnMySide', 'Brexit']
['EU_EIC', 'SME', 'Brexit']
['Brexit']
['brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit', 'Advertising']
['Brexit']
['Brexit']
['Brexit']
['EU', 'Brexit', 'FinalSay']
['BillandTed3', 'BillAndTedFaceTheMusic', 'BillandTed', 'brexit', 'shitmusic']
['remain', 'TIG', 'WTO', 'BRexit']
[]
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['EU', 'Brexit', 'FinalSay']
['RevokeArticle50']
['Brexit', 'Brexit', 'Brexitcast']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'RevokeArticle50']
['Brexit']
['brexit', 'RevokeArticle50']
[]
['brexit']
['Brexit']
['marchtoleave', 'Knaresborough']
['brexit']
['fishermen', 'Whitby', 'Brexit']
[]
['TheresaMay', 'FBPE', 'stopbrexit', 'Brexit']
[]
['brExit', 'eu', 'eu', 'May', 'London']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
[]
['Brexit', 'EU', 'fishermen', 'Maritime', 'Fisheries', 'fishing', 'islandnation']
['brexit']
['markenrecht', 'brexit', 'gehtdoch']
['Brexit']
['Brexit']
['Brexit']
['LINO', 'Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['SeriousShortagesProtocol']
['Brexit']
['brexit']
['RevokeArticle50']
['Brexit', 'faith', 'hope']
['EU', 'Brexit']
[]
['Brexit']
['BrexitBullshit', 'Brexit']
['A50', 'milkyway', 'Brexit', 'DManalysis', 'Brexit', 'DigitalDiplomacy', 'Diplomacy', 'PublicDiplomacy', 's', 'hashtags']
[]
[]
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['IndGB', 'MBGA', 'MAGA', 'FBPD', 'IFB', 'followforfollowback', 'LeaveMeansLeave', 'ReformParliament', 'WTOBrexit', 'CleanBrexit', 'Brexit', 'Standup4Brexit', 'losersvote']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['brexit']
['RevokeArticle50', 'ParabensBolsonaro', 'Brexit', 'London', 'EuAprovoBolsonaro', 'WorldDownSyndromeDay', 'BBB19', 'Trump', 'MAGA', 'KAG']
['Brexit']
['Brexit', 'EORI']
['Brexit', 'BrexitChaos', 'TheresaMay']
[]
['UK', 'brexit', 'labour']
['brexit']
[]
['Brexit', 'DavidCameron']
[]
['brexit', 'bbcnewsnight']
['BREXIT']
['NewZealand', 'JacindaArdern', 'Brexit', 'Britain']
['Labour', 'Brexit']
['RevokeArticle50', 'Brexit']
['Brexit']
['remain', 'TIG', 'WTO', 'BRexit']
[]
['Brexit']
['EU', 'Brexit']
['RevokeArticle50', 'brexit']
['RevokeArticle50', 'Brexit', 'BrexitShambles']
['Brexit', 'sugar']
['Brexit', 'PeoplesVote', 'SecondReferendum']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['kylewilson', 'Brexit']
['BrexitMayhem', 'Brexit']
[]
['brexit']
['Brexit']
[]
[]
['Brexit', 'WTOBrexit']
['Brexit']
['petitionwatch', 'Brexit']
[]
[]
['IsItOk', 'Brexit']
[]
[]
[]
['Brexit']
['Unterhaus', 'Brexit']
['brexitpetition', 'brexit', 'RevokeArt50']
['Brexit']
['brexsh', 'brexit']
['RevokeArticle50', 'Brexit']
[]
['TodaySOR']
['Brexit']
['Brexit']
['Brexit', 'BrexitShambles', 'ad']
[]
['revoke', 'revokeA50', 'brexit', 'remain', 'eu']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Article50', 'Remain']
['Brexit']
['Brexit']
['Brexit', 'JeremyCorbyn', 'Labour']
['Brexit']
[]
[]
['entreprise', 'Londres', 'UE', 'Brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['BREXIT', 'TheresaMay', 'Parliament', 'SOVEREIGN']
['housing', 'property']
['Brexit']
['TheresaMay', 'Brexit']
['Brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['Brexit']
['Brexit', 'Germany']
['Brexit']
['Brexit', 'Brexitcast']
['brexit', 'M26']
['Brexit', 'StopBrexit', 'RevokeA50']
['هايبربنده', 'الهيئة_العامة_للأرصاد_وحماية_البيئة', 'Brexit', 'حارسة_الأحلام', 'يوم_الام', 'حبك_للقهوه_بتغريده', 'ALDENKingOfChill']
['Brexit', 'WorldPoetryDay', 'poetry', 'WritingCommunity', 'writing']
['Brexit', 'Brexitcast']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['HOSBEC', 'brexit', 'mercadobritanico', 'brexitbenidorm']
['brexit']
['EU', 'Brexit', 'FinalSay']
['Brexit']
[]
['remain', 'Brexit', 'NoDeal']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['RevokeArticle50', 'Brexit']
['Brexit']
['PMQs', 'Brexit']
['Brexit']
['Brexit']
['RevokeArticle50', 'ParabensBolsonaro', 'Brexit', 'London', 'EuAprovoBolsonaro', 'WorldDownSyndromeDay', 'BBB19', 'Trump', 'MAGA', 'KAG']
['Brexit', 'EU']
['mercadobritanico']
['Brexit']
['Brexit', 'theresamay']
[]
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['BRexit']
['Brexit', 'EU']
['brexit']
['Brexit', 'Brexitcast']
[]
['Brexit']
['brexit', 'remainernow']
['Brexit']
['EUTreaty']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit', 'Windrush']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit']
[]
['EU']
['Brexit']
['Brexit']
['Bercow', 'Arsenal', 'brexit']
['Brexit', 'BrexitShambles', 'BrexitChaos']
['Brexit', 'BrexitChaos', 'TheresaMay']
['RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['brexit']
['BrexitShambles', 'Brexit', 'RevokeArticle50']
['Brexit', 'EU']
['BREXIT', 'cybersecurity']
['EU', 'Brexit', 'AfD', 'Gauland']
['Brexit']
['brexit']
['Brexit', 'WithdrawalAgreement', 'EUelections']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brokenBritain', 'RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
['RevokeArticle50', 'Tory', 'Brexit']
['Brexit', 'RevokeArticle50']
['EU', 'RevokeArticle50', 'BrexitBetrayal', 'Brexit', 'LibLabCON', 'Traitors', 'PM']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit', 'borisjohnson', 'Brexit', 'boris']
['Brexit', 'democracy']
['Brexit']
['brexit']
['Brexit']
[]
['brexit']
['brexit', 'blackmaileconomy', 'Trump', 'EU27', 'Trump', 'TrojanhorseUK', 'NoDealBrexit', 'RenewEurope']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brokenBritain', 'RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
['innovation']
['Brexit']
['هايبربنده', 'الهيئة_العامة_للأرصاد_وحماية_البيئة', 'Brexit', 'حارسة_الأحلام', 'يوم_الام', 'حبك_للقهوه_بتغريده', 'ALDENKingOfChill', 'شكرا_نايف_الحربي', 'اسقاط_القروض_لليوم_106', 'من_افضل_لاعب_كره_قدم', 'شي_ندمت_عليه_في2018', 'صباح_الخميس']
['Brexit', 'RevokeArticle50']
['Brexit', 'CommercialProperty', 'PropertyNews', 'property']
['Brexit']
['Brexit', 'Brexitcast']
[]
[]
[]
['Newsoftheday', 'BelgianPress', 'Esport', 'EURO2020', 'BelgiqueRussie', 'RedLions']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['Brexit', 'ClimateEmergency', 'EcologicalEmergency']
['brexit']
['Brexit']
['Brexit']
['brexit']
['brexit', 'NoDeal']
['Brexit']
['Brexit']
['Brexit']
['EU', 'Brexit', 'FinalSay']
['Brexit', 'Brexiteers', 'remain', 'Remoaners', 'PoliticsLive']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'alwayslookonthebrightsideoflife']
[]
['Brexit']
['RevokeArticle50', 'Brexit']
['Brexit', 'Article50', 'RevokeArt50', 'RevokeA50Now']
['Brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['jeremycorbyn', 'corbyn', 'jezza', 'labour', 'labourparty', 'votelabour', 'toriesout', 'brexit', 'brexitshambles', 'gtto', 'austeritykills', 'ukpolitics']
['NotOnMySide', 'Brexit']
['Brexit']
[]
['Brexit']
[]
['brexit']
['Brexit']
['brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit', 'revokearticle50']
[]
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['brexit', 'brexitshambles', 'TheresaMayResign']
['Brexit']
['Brexit']
[]
['Brexit']
['NoDeal', 'Brexit', 'Brexit']
['brexit', 'Article50']
['Brexit']
['BoE', 'Brexit', 'hardBrexit']
['Brexit']
[]
['NoDeal', 'ScottishSix']
['EUCO', 'Brexit', 'EPP', 'Fidesz']
['Brexit']
[]
['felizjueves', 'Brexit']
['brexit', 'blackmaileconomy']
['Brexit', 'Brexitcast']
['Brexit']
[]
['RevokeArticle50', 'ParabensBolsonaro', 'Brexit', 'London', 'EuAprovoBolsonaro', 'WorldDownSyndromeDay', 'BBB19', 'Trump', 'MAGA', 'KAG', 'MakeAmericaGreatAgain', 'FloresParaAdriana', 'BolsonaroEnvergonhaOBrasil', 'brasil', 'Media', 'Saales', 'TrumpTrain']
[]
['EU', 'Brexit']
['brexit', 'RevokeA50Now', 'petitions']
[]
['Brexit', 'Großbritannien', 'Freihandel', 'USA', 'EU']
['Brexit']
['BREXIT']
['Brexit']
['TheresaMay', 'BrexitVote', 'BrexitShambles', 'Brexit', 'Tories']
['BrexitMeansScorpions', 'Brexit', 'BrexitChaos']
['BREXIT']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['pique', 'cani', 'uomini', 'giornatamondialedellapoesia', 'Brexit', 'Wikipedia', '21marzo', 'Auguri', 'blocconavale', 'Beautiful', 'cartabianca', 'diMartedì']
['RevokeArticle50', 'Brexit']
['newsnight']
['brexit']
['Brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit', 'BrexitShambles']
[]
['Brexit']
[]
['brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['EUCO']
['Next', 'retailnews', 'retailers', 'EU', 'tradetariffs', 'Brexit']
['Brexit']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
['Brexit', 'BrexitCrisis', 'BrexitShambles']
['brexit']
['Brexit', 'RevokeArticle50']
[]
['Brexit', 'MFF', 'EU', 'RuleOfLaw', 'EUbudget']
['NotOnMySide', 'IVotedLeave', 'NoMoreEu', 'Brexit', 'DeliverBrexit']
['TheDrumArms', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['alloutpolitics', 'brexit', 'MayMustGoNow']
['Brexit']
[]
['Brexit']
['brexit']
['Brexit']
['Brexit', 'Ceramics', 'plates', 'Kitchen', 'Stoke', 'paintings', 'Books', 'Gift']
['Brexit']
[]
['nodeal', 'brexit']
['brexit', 'GeneralElectionNow', 'JC4PM2019']
['Remoaner', 'Remoaner', 'Remain', 'EU', 'Brexit', 'RevokeArticle50']
['Brexit']
['Brexit']
['Brexit']
[]
['brexit']
['Brexit']
['Article50', 'Brexit', 'practice', 'controversial', 'NoToBrexit', 'StopBrexit']
['Brexit']
[]
[]
['Brexit']
['UltimOra', 'Brexit', 'May']
[]
['RevokeArticle50Now', 'RevokeArticle50', 'brexit', 'welcomebaxin']
['petition']
['Brexit']
['Brexit']
[]
['RevokeArticle50', 'Brexit']
['Brexit', 'leave']
['Brexit', 'TRM']
['Brexit', 'Brexitcast']
['brokenBritain', 'RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
['Brexit', 'farmers']
[]
['Brexit']
[]
[]
['brexit', 'remainernow']
['brexit']
['brexit']
['brexit']
['Brexit']
['brexit', 'eu']
['BREXIT']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit', 'exchangerate', 'pound']
[]
['brexit']
['Brexit', 'PeoplesVote', 'PutItToThePeople']
['F1', 'Brexit', 'Tusk']
['Brexit']
['Brexit', 'BrexitChaos', 'TheresaMay']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
[]
['Brexit']
['Brexit', 'NHS', 'StopBrexitSaveBritain', 'RevokeArticle50']
[]
['RevokeArticle50', 'Brexit']
['Brexit']
['Brexit', 'advertising']
['adweekeurope', 'brexit']
['Perşembe', 'Fed', 'Brexit', 'ABD']
['Brexit']
['Brexit']
['Brexit']
[]
['UK', 'exporters', 'importers', 'Brexit', 'internationaltradeconf']
['brexit', 'brexit', 'GBP', 'FX', 'RevokeArticle50']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
[]
['Brexit']
[]
['Brexit']
['brexit', 'PutItToThePeople']
[]
['Merkel', 'Brexit', 'TheresaMay', 'JeremyCorbyn', 'FBPE', 'Barnier']
[]
['Revoke', 'Brexit']
[]
['Brexit', 'farmers']
['Brexit', 'farmers']
['Brexit', 'BrexitShambles', 'PeoplesVote']
[]
[]
['Brexit', 'StopBrexit', 'StopBrexitSaveBritain', 'RevokeArticle50', 'RevokeA50Now']
['brexit']
['MoggMentum', 'Brexit']
['NoDeal', 'ScottishSix']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'TheDrumArms']
[]
[]
['brexit']
['sign', 'Brexit']
['brexit']
[]
['Brexit']
['Brexit']
['brexit', 'nodealbrexit', 'deludedsnowflakes', 'misguided', 'fools']
['Brexit']
['RevokeArticle50', 'Brexit', 'ShesLostControl', 'JoyDivision']
[]
['Brexit']
['Brexit', 'OmniShambles']
['TheresaMay', 'Brexit', 'politics']
[]
['pipedream', 'brexit']
['Brexit']
['Brexit', 'servicetweet']
['NODEAL', 'brexit']
['Brexit']
[]
['radovankaradzic', 'Serbia', 'Brexit']
['Brexit']
[]
['EU', 'Brexit', 'Einstein', 'IQ', 'BrexSHITs', 'REMAIN']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Brussels']
['RevokeArticle50', 'Brexit', 'PeoplesVote']
[]
['brexit']
['Brexit']
['Brexit']
['RevokeArticle50', 'Brexit']
['Brexit', 'May', 'EU']
['Brexit']
[]
[]
[]
['brexit', 'cambridgeanalytica', 'DataFest19']
['Brexit']
['TheBullingdon', 'Brexit']
[]
['RevokeArt50', 'GoWTO', 'Brexit']
['Brexit', 'BrexitChaos', 'RevokeArticle50']
['EU', 'Brexit', 'AfD', 'Gauland']
['EU', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['SeriousShortagesProtocol']
['EU', 'Brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['SeriousShortagesProtocol']
['Brexit', 'TheresaMay']
['Gauland', 'Bundestag', 'Brexit', 'EU']
['UE', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
[]
['Brexit']
['brexit']
['brexit']
[]
['WorldPoetryDay', 'brexit']
['OlympicPark', 'CuratingLdn', 'Brexit']
['RevokeArticle50', 'Brexit']
[]
['Brexit', 'BrexitBetrayal', 'LeaveEU', 'NoDealBrexit', 'UK', 'MBGA']
[]
['Brexit', 'GoWTO']
[]
['Brexit']
['Brexit']
[]
['NoDeal', 'ScottishSix']
[]
['Brexit', 'mreade']
['RevokeArticle50', 'Brexit']
['OperationYellowhammer', 'Brexit']
['EUCO', 'Brexit']
['brexit']
['Brexit']
['Brexit', 'BrexitBetrayal']
['brexit']
[]
['DailyMail', 'Brexit', 'TheresaMay', 'EUCO']
['brexit', 'BBCnewsUK', 'BBCbias']
['WWG1GWA', 'Brexit', 'WRWY']
['Brexit', 'RejetDesAutres', 'RepliSurSoi']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
['BrexitMayhem', 'BrexitShambles', 'Brexit']
['brexit']
['brexit']
['Brexit', 'RevokeArticle50']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['BBCNews', 'RevokeArticle50', 'Brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
[]
['Brexit', 'RevokeArticle50', 'StopBrexitSaveBritain', 'PeoplesVote', 'BrexitCrisis']
[]
['Brexit', 'notonmyside', 'MadMay', 'MayMustGo', 'MayMustGoNow', 'ToryChaos', 'BrexitChaos', 'BrexitCatastrofuck', 'peoplesvote', 'StopBrexit', 'stoptheresamay', 'RevokeA50', 'Remain']
['Brexit']
[]
[]
['RevokeArticle50']
['brexit']
['Brexit']
['SharedProsperityFund', 'Brexit']
['Brexit', 'LondonIsOpen', 'MQT']
[]
['Brexit']
['Brexit', 'TheresaMay', 'Conservatives']
['Brexit']
['Article50', 'Brexit']
['Brexit', 'thread']
['EU', 'Brexit', 'Brexit']
['Brexit', 'ChinaDailyCartoon']
[]
[]
['Brexit']
['RevokeArticle50', 'Brexit']
['Brexit']
[]
[]
['Brexit']
['EU', 'Brexit', 'FinalSay']
['WORSTDealinHISTORY', 'Brexit', 'LeaveMeansLeave', 'NoDealNoProblem']
['MayMustGo', 'Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['UE', 'politiche', 'EUCouncil', 'Brexit', 'EUelections2019']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['StopBrexit', 'Brexit']
[]
['Brexit']
['Brexit']
['LBC', 'Brexit', 'EU27', 'FBPE', 'PeoplesVote', 'PoliticsLive', 'c4news', 'skynews', 'itvnews', 'MV3']
['Brexit']
[]
['Brexit']
['brexit', 'petitionwatch']
['MoggMentum', 'Brexit']
['Brexit']
['NoDeal', 'ScottishSix']
[]
['Brexit']
[]
['brexit']
[]
['Brexit']
[]
['TheresaMay', 'MV3', 'Brexit', 'BrexitShamble', 'BrexitShambles', 'Brexitdeal']
[]
[]
['brexit', 'RevokeArt50', 'cameron']
[]
['Brexit']
['Brexit', 'UKMFG']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
['Tories', 'immigration', 'benefits', 'housing', 'NHS', 'transport', 'foreignpolicy', 'Syria', 'Skripal', 'Windrush', 'Brexit', 'Britain', 'ToryParty']
[]
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['Brexit']
[]
['Merkel', 'Brexit']
[]
['Brexit']
['RevokeArticle50', 'Brexitchaos', 'Brexit']
['Brexit', 'May']
['Brexit', 'May']
['Brexit', 'NRW']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['brexit', 'Petition']
['Brexit']
[]
['EU', 'Brexit', 'AfD', 'Gauland']
['EU', 'Brexit', 'FinalSay']
['Brexit']
['WithdrawalAgreement']
['Brexit']
['Brexit']
['Merkel', 'Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['brexit']
['EU', 'Brexit']
['Brexit']
['brexit']
['Brexit', 'NRW', 'Brexit']
['brexit']
[]
['brexit']
[]
['interesting', 'workshop', 'information', 'brexit', 'challengesahead', 'foodindustry', 'technical', 'consultancy', 'labelling', 'support', 'thankyou']
['Brexit']
['brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
['brexit']
[]
['Brexit', 'BrexitShambles', 'BrexitMeansExit']
['brexit', 'remain', 'RemainInTheEU']
['NotOnMySide', 'Brexit', 'RevokeArticle50']
['EU', 'Brexit', 'AfD', 'Gauland']
['brexit']
['Brexit']
['brexitpetition', 'Brexit']
[]
[]
[]
['brexit']
['money', 'business', 'economy', 'finance', 'brexit']
['Brexit', 'MayMustGo']
['Brexit']
[]
['Brexit']
['Brexit', 'PMStatement', 'BrexitStatement']
['WWG1WGA', 'BringBackTheJudge', 'brexit', 'MAGA', 'RangDeKesari', 'NotOnMySide', 'AntiSemitic', 'VoteRedToSaveAmerica', 'UniteNJ', 'FirstDayOfSpring', 'ThingsIWouldRunFrom', 'TheDilleyShow', 'GodBlessAmerica', 'GodBlessPOTUS', 'MarchMadness']
['Merkel', 'Brexit', 'Unterhaus']
['brexit']
['AdWeekEurope', 'Brexit']
['brexit']
['RevokeArticle50', 'Brexit', 'RevokeRevolution']
[]
['fishermen', 'Whitby', 'Brexit']
[]
['Brexit', 'Brexit', 'Dobrindt']
['brexit', 'brexitchaos', 'revokearticle50']
['RevokeArticle50']
[]
['Brexit']
['brexit']
['Article50', 'Brexit']
['Brexit']
['TheresaMaySpeech', 'Brexit']
[]
['brexit']
['Brexit']
['brexit', 'nodeal', 'InformationManagement', 'ICO', 'Contract', 'SCC', 'GDPR', 'Hosting', 'Tool']
['Brexit', 'ReinoUnido']
['brexit']
['NoDeal', 'ScottishSix']
['Brexit', 'EUCO', 'Art50']
['Brexit', 'EU', 'SavetheUK']
['Brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['Brexit', 'Remain', 'Leave']
['UNAntiRacismDay', 'unitedwestand', 'tacleracism', 'brexit']
[]
[]
['Voxpot', 'Brexit', 'Reportáž', 'SeverníIrsko']
['brexit']
['brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Benidorm', 'Brexit', 'Brexit']
['EU', 'Brexit', 'AfD', 'Gauland', 'Bundestag', 'Regierungserklaerung', 'Europawahl', 'EP2019']
['Brexit']
['afterlife', 'Brexit']
['Brexit', 'Mayxit']
['brexit']
['Brexit']
['Brexit']
['mercadobritanico', 'brexit']
['Brexit']
[]
['Brexit', 'RevokeA50Now']
['BVDW', 'Brexit', 'Digitalexperten']
['Brexit']
['Brexit']
['BREXIT']
['HOSBEC', 'brexit', 'mercadobritanico', 'brexitbenidorm']
[]
['PeoplesVote', 'Brexit', 'leave', 'remain', 'PMQs', 'politicslive']
['Theresa', 'May', 'Brexit', 'UK', 'EU']
['mercadobritanico']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['borisjohnson', 'Brexit']
['Brexit']
['Brexit']
['RevokeArticle50', 'Brexit']
['brexit', 'RevokeArticle50', 'endthisshitshow']
[]
['SharedProsperityFund', 'Brexit']
['brexit']
['RevokeArticle50']
['Brexit']
['crashing', 'NotDDoS', 'Brexit', 'TheresaMayStatement', 'RevokeArticle50', 'BrexitShambles']
['Brexit']
['Brexit']
['BrexitChaos', 'Britain', 'Brexit', 'EU', 'NoBrexit']
['Brexit']
['Brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Fairtrade', 'Brexit']
['franchise', 'Brexit']
['RevokeArticle50', 'RevokeA50', 'Portsmouth', 'Hampshire', 'Brexit']
['theportugalnews', 'portugal', 'brexit']
['Brexit']
['WorldPoetryDay', 'SOVEREIGNTY']
['Brexit', 'corbyn', 'eu']
['Brexit']
['Macron', 'Brexit', 'May']
[]
['RevokeArticle50', 'Brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['Brexit', 'trade']
['EU', 'Brexit', 'RevokeArticle50', 'Maymustgo']
['WMD', 'TheresaMay', 'Brexit', 'WA']
['Brexit', 'Extension']
[]
['Brexit', 'servicetweet']
['Brexit']
[]
['brexit', 'EU', 'british', 'parliament']
['Brexit']
['brexit', 'RevokeArticle50', 'RevokeArticle50Now']
[]
['brexit', 'RevokeArticle50', 'overreaction']
[]
['Brexit', 'deVereNews']
['brexit', 'RevokeArticle50']
['Brexit']
['Brexit']
['RevokeA50']
['Brexit', 'Article50', 'petition']
['Bercow', 'Arsenal', 'brexit']
['brexit']
['MoggMentum', 'Brexit']
['Brexit']
['brexit']
['Brexit']
['MQT', 'Brexit']
['Brexit', 'VictoriaLIVE']
['Brexit']
['Brexit', 'UKEntrepreneurship', 'Innovation']
['Brexit']
['RT', 'gold', 'silver', 'stocks', 'trading', 'trades', 'markets', 'Investing', 'today', 'rich', 'education', 'hope', 'dreams', 'Giveaway', 'free', 'positivity', 'focus', 'goals', 'life', 'money', 'success', 'fun', 'levelup', 'brexit']
['INAelectionObserverSOS', 'Brexit', 'INAelectionObserverSOS']
['brexit']
[]
[]
['janeygodleyvoiceover', 'brexit']
['Brexit']
['Brexit']
[]
['brexit', 'househunting']
['Brexit', 'BrexitChaos']
['BREXIT']
[]
['Brexit']
['brexit']
[]
[]
['Brexit']
['Brexit']
['MoggMentum', 'Brexit']
['brexit', 'RemainInTheEU']
['Brexit']
['Brexit', 'RevokeArticle50', 'Remain']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit', 'WithdrawalAgreement', 'agriculture', 'futureofag']
['NoDeal', 'ScottishSix']
['BBC', 'Brexit']
['RevokeArticle50', 'MayMustGo', 'Brexit']
[]
['brexit']
['gold', 'brexit', 'safedepositbox', 'safedepositlockers', 'valuables', 'Diamond', 'jewellery', 'london']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
[]
['EU', 'Brexit', 'nasty', 'UK', 'EU']
['Brexit', 'Article50']
[]
[]
['Brexit']
[]
['Brexit']
['UKSOPRO']
['Brexit', 'Brexit', 'PeoplesVote', 'FinalSay', 'BrexitBallot']
['Brexit']
['Brexit']
['Brexit', 'advertising']
['Brexit']
['Brexit']
['Brexit']
['RevokeArt50', 'GoWTO', 'Brexit']
['BREXIT']
['brexit']
[]
['brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['EU', 'Brexit', 'RevokeArticle50']
['Brexit']
['Brexit']
['ReinoUnido']
[]
[]
[]
['Brexit', 'Politics']
['MoggMentum', 'Brexit']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['brexit']
['Brexit', 'revokearticle50']
['RevokeArticle50', 'brexit', 'NotOnMySide', 'may', 'MaySpeech', 'MayMustGo']
['brexit', 'RevokeArt50', 'EU']
['EU', 'Brexit', 'RevokeArticle50']
[]
['RevokeArticle50', 'Brexit', 'BrexitShambles']
['Brexit', 'BrexitBetrayal', 'StandUp4Brexit']
['EU', 'Belgium', 'sustainable', 'future', 'Brexit']
['Brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['Brexit', 'socialmedia', 'trump', 'facebook']
['Brexit']
['brexit', 'Harrow', 'Conservaties', 'PeoplesVote']
['EU', 'Brexit', 'FinalSay']
[]
['Brexit', 'RoyaumeUni']
[]
['Brexit']
[]
['mv3', 'brexit']
['Brexit']
['theresa_may', 'brexit', 'embarrassing']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit', 'RevokeArticle50', 'petition']
[]
['Brexit']
['stopbrexit']
['EU', 'Brexit', 'FinalSay']
['Brexit', 'Lockerbie', 'curling', 'squirrels', 'curlingorsquirrels', 'lovecurling']
['RevokeArticle50', 'RevokeArt50', 'RevokeArticle50Now', 'Brexit', 'BrexitChaos']
[]
['brexit']
['brexit']
['Brexit']
['brexit']
['brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit', 'learnings']
['newsnight']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Story', 'Brexit', 'toriesOUT']
['Brexit']
['EU', 'Brexit', 'RevokeArticle50']
['RevokeArticle50']
['Brexit', 'trade']
['Brexit']
['Brexit']
['VladimirPutin', 'Brexit']
['JeremyCorbyn', 'ChukaUmunna']
['brexit', 'RevokeArt50']
['brexit']
[]
[]
['Brexit', 'petizione', 'permanenza']
['Brexit', 'Theresa']
['brexit', 'BREXITBetrayal', 'TakeBackControl', 'LetsGoWTO', 'GoWTO', 'MarchToLeave']
['Brexit']
['AfD', 'Weidel', 'Brexit', 'Deutschland', 'Dexit', 'Merkel']
[]
['Article50', 'strongandstable', 'Brexit', 'lizardpeople']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['tweet', 'Brexit', 'Twitter']
['petition', 'Article50', 'Brexit']
['Brexit']
['RevokeArticle50', 'Brexit']
['Brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['EUCO', 'Brexit']
['brexit']
['Brexit']
['RevokeAndRemain', 'Brexit']
['Brexit', 'MeaningfulVote3', 'bbcbreakfast']
['Μέι', 'Τουσκ', 'Brexit']
['Article50', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit', 'UK', 'lifesciences', 'medtech', 'pharma', 'EMA', 'xl8']
['Brexit', 'Marketing', 'industria', 'recesión']
['Brexit', 'revokearticle50']
['Brexit']
['article50', 'brexit', 'gohomeTheresayouredrunk']
['CIO', 'ICO', 'VoteLeave', 'Brexit', 'UnlawfulTextMessages', 'InformationCommissionerCompliance', 'DataProcessing', 'Compliance', 'GDPR', 'CIOinspired']
['CIO', 'ICO', 'VoteLeave', 'Brexit', 'UnlawfulTextMessages', 'InformationCommissionerCompliance', 'DataProcessing', 'Compliance', 'GDPR']
['Trumps', 'Brexit']
['BRexit', 'LeaveEU']
['Brexit']
['UK', 'Brexit']
['EU', 'Brexit', 'RevokeArticle50']
['Brexit']
['Brexit', 'RevokeArticle50', 'petitionwatch', 'PeoplesVoteMarch', 'ThePeople']
['brexit']
['RevokeArticle50']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['RevokeArticle50', 'Brexit']
['Brexit', 'healthcare']
['Brexit']
['BREXIT']
['RevokeArticle50', 'Brexit', 'PeoplesVote']
['petitionwatch', 'Brexit', 'petition']
['PMQs', 'Brexit', 'Happiness', 'HappinessDay']
['Brexit']
['Brexit', 'ChinaDailyCartoon']
['UKSOPRO']
['Brexit']
[]
['Brexit', 'EuropeanUnion', 'OU50', 'OLTop50']
[]
['Brexit', 'NoDeal']
['Haulage', 'Transport', 'Brexit']
['brexit']
[]
['MAGA', 'WWG1WGA', 'Brexit', 'TWGRPS', 'PatriotsUnited', 'Tbt', 'WeAreTheNewsNow']
['RevokeArt50', 'Brexit', 'PeoplesVote', 'Remain', 'Maymustgo']
[]
['RevokeArt50', 'GoWTO', 'Brexit']
['Brexit']
['Brexit', 'deVereNews']
[]
['brexit']
['Brexit', 'faith', 'hope']
[]
[]
['EU', 'Brexit', 'FinalSay']
['settledstatus', 'brexit', 'RevokeArticle50']
['Brexit', 'trade', 'UK', 'Netherlands']
[]
['Brexit']
['brexit']
['Article50', 'Brexit']
['Brexit']
['Brexit', 'emplaw', 'UKemplaw']
[]
['referendum', 'Brexit']
['International', 'Brexit', 'RoyaumeUni']
['RevokeArticle50', 'Brexit', 'BrexitShambles']
['Brexit']
['LeaveMeansLeave', 'BrexitBetrayal', 'MayMustGo', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['CorkToday', 'Brexit', 'M20', 'GardaFile']
['Brexit']
['Brexit', 'TheresaMay', 'JeremyCorbyn']
['Brexit', 'EU', 'Bundestag']
[]
[]
['Brexit']
['RevokeArt50', 'brexit']
['usethemandate', 'Brexit', 'indyref2', 'Scotland']
['Merkel', 'Regierungserklärung']
['Corbyn', 'Brexit']
['EU', 'Belgium', 'sustainable', 'future', 'Brexit']
['RevokeArt50', 'GoWTO', 'Brexit']
[]
['Brexit']
['WorldPoetryDay', 'Brexit']
['May', 'Brexit']
['Brexit']
['Brexit']
['Brexit', 'China']
['Brexit']
['Brexit', 'DissolveTheUnion']
['RevokeArticle50', 'Brexit']
[]
['Brexit']
['Article50', 'brexit', 'skulduggery']
['Brexit']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
[]
['RevokeArticle50', 'brexit']
[]
['brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['asset', 'Brexit']
['Brexit', 'thenewsinonequote']
['brexit']
['lunch', 'Brexit']
['Brexit']
['Brexit']
['brexit', 'BREXITBetrayal', 'TakeBackControl', 'LetsGoWTO', 'GoWTO', 'MarchToLeave']
['brexit']
['Brexit', 'SimonManley']
[]
['brexit']
['Brexit']
['Brexit']
[]
['EU', 'Brexit']
['sondage', 'Brexit']
['SeriousShortagesProtocol']
['Brexit']
['corbyn']
['brexit']
['Actualidad', 'Brexit']
[]
['Brexit']
['Brexit']
['Brexit', 'MayMustGo', 'RevokeArticle50', 'Petition']
['Brexit']
['brexit']
['UKvisa', 'Brexit']
['brexit', 'punkd']
['Brexit']
['UK', 'Retail', 'Brexit']
[]
['Brexit']
['brexit']
['Brexit', 'Brexit']
['Brexit']
['brexit']
['Brexit']
['brexit']
['Brexit']
['brexit']
['EU', 'Brexit', 'BrexitVote', 'FinalSay']
['brexit']
['Brexit']
['EUCO', 'Brexit', 'EPP', 'Fidesz']
[]
['Brexit']
[]
['PutItToThePeople', 'PeoplesVote', 'Brexit']
['Brexit']
['brexit']
['RevokeArticle50', 'petition', 'brexit', 'BrexitChaos', 'BrexitShamble', 'BrexitCrisis', 'FailingGrayling', 'it']
['Brexit', 'retired', 'EU']
['RevokeArticle50', 'Brexit', 'Maymustgo']
['Brexit', 'Vote', 'Investment']
['NoDeal', 'WTO', 'CleanBrexit', 'Brexit']
[]
['Brexit']
['IFLC19', 'FamilyLaw', 'Brexit', 'Childern', 'Finance', 'Foreignmarriages', 'Conference']
['Brexit']
['Brexit']
['revokeArticle50', 'Brexit', 'BrexitShambles', 'MayMustGo']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['yourcall', 'brexit']
['Brexit']
['brexit']
['MorningNote', 'Top5', 'Brexit']
['Européennes2019', 'Brexit', 'Christianophobie', 'LR', 'RN']
['HRC', 'HANNITY', 'MAGA', 'WWG1WGA', 'PatriotsUnited', 'TWGRPS', 'tbt', 'Brexit']
['Brexit']
['Brexit']
['MarkBenton', 'Remain', 'Brexit', 'LeaveMeansLeave']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit', 'Trump', 'Election', 'Impeach', 'TrumpFascist', 'TrumpTraitor', 'Collusion', 'TrumpRapist', 'TrumpLies', 'TrumpResigns', 'Russia', 'RobertMueller', 'TrumpRacist', 'TrumpLoser']
['Eurostar']
['Brexit', 'Mexit', 'voorspellendetweet']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit', 'NAZIS']
['Brexit']
['Brexit']
['brexit']
[]
['Brexit']
['Brexit', 'EU', 'catastrophic', 'BrexitShambles', 'nodeal', 'LEAVE']
['Brexit']
['Brexit']
['TohleJeSummit', 'Brexit', 'Debata', 'Evropa']
['BrexitBetrayal', 'LeaveMeansLeave', 'NoDealBrexit', 'NoSingleMarket', 'NoCustomsUnion', 'Brexit', 'MayMustGo', 'RIPUKDemocracy']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
['Brexit']
[]
[]
['Brexit', 'DissolveTheUnion', 'indyref2']
[]
['Brexit']
['Maybot', 'BrexitChaos', 'BrexitMayhem', 'Brexit', 'BrexitExtension', 'PeoplesVoteMarch']
['Brexit', 'Remain', 'CancelBrexit', 'EU', 'May', 'RevokeArticle50']
['Brexit']
['Brexit']
['brexit', 'bclepconference19']
['brexit', 'retail']
['Brexit']
['EU', 'Brexit', 'RevokeArticle50']
[]
['brexit']
['SharedProsperityFund', 'Brexit', 'BCLEPConference19']
[]
['Ireland', 'Brexit']
['brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['NoDeal', 'Brexit']
['brexit']
['disinformation', 'Brexit', 'transatlantic', 'ESharpLive']
['Brexit']
['Brexit']
[]
['RevokeArticle50']
['Brexit']
['UKSOPRO']
['Brexit', 'ChinaDailyCartoon']
['Brexit', 'Calais', 'Coquelles']
['standard', 'Brexit']
['seo', 'marketing', 'healthcareit', 'smallbusiness', 'Investing', 'Trading', 'Finance', 'HedgeFunds', 'MutualFunds', 'PrivateEquity', 'Portfolio', 'Assets', 'Income', 'Capital', 'money', 'ETF', 'Brexit', 'Defeat', 'latest', 'May', 'mean', 'news', 'Theresa', 'travel', 'Vote']
['Brexit', 'BrexitShambles', 'RevokeArticle50']
['BrexitShambles', 'BrexitExtension', 'Brexit']
['Brexit', 'landreform']
['NoDeal', 'ScottishSix']
['Brexit']
['Brexit']
['sterling', 'brexit', 'gbp']
['Brexit']
['caccia', 'ChampionsLeague', 'industria', 'difesa', 'UE', 'Italia']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'Dobrindt']
[]
['Brexit', 'UK', 'EU', 'Tariffs', 'Economics', 'Econdev', 'Import', 'Export']
['Brexit']
[]
['INAelectionObserverSOS', 'Brexit', 'INAelectionObserverSOS']
['Brexit']
['RevokeArticle50', 'Brexit']
['Brexit', 'PutItToThePeople']
['NotOnMySide', 'RevokeArticle50', 'Brexit', 'PeoplesVote']
['Omnishambles', 'Brexit']
['Brexit', 'TheresaMay', 'Parliament']
[]
['Brexit']
['tweet', 'Brexit', 'Twitter']
['Européennes2019', 'Brexit', 'Christianophobie', 'LR', 'RN']
[]
[]
['brexit', 'PeoplesVote']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'BrexSHIT']
['brexit']
['Brexit']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['revokearticle50', 'Brexit']
['Brexit']
[]
['Brexit', 'theresamay', 'May', '21Marzo']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['BrexitBetrayal', 'LeaveMeansLeave', 'NoDealBrexit', 'Brexit', 'MayMustGo', 'RIPUKDemocracy']
['Brexit']
['brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['SeriousShortagesProtocol']
[]
['Brexit', 'Remain', 'RemainerNow', 'LeaveMeansLeave', 'LeaveToMarch', 'BrexitShambles', 'PeoplesVote']
['Brexit', 'BrexSHIT']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
[]
['Feuilleton', 'Uploadfiler', 'Artikel13', 'Urheberrecht']
['Brexit', 'remain', 'RevokeArticle50']
[]
['Brexit', 'Brexit']
['Brexit', 'BrexitShamble', 'RevokeArticle50', 'PeoplesVote']
['Brexit']
['RevokeArticle50', 'Brexit']
['RevokeArticle50', 'brexit']
['BREXIT', 'PeoplesVote']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['GaryLineker', 'Adonis', 'brexit']
[]
['Brexit']
['brexit', 'digital', 'eu', 'großbritannien', 'datenschutz']
['PeoplesVote']
['Brexit']
['Brexit']
['RevokeArticle50']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['JeremyCorbyn', 'ChukaUmunna']
['Article50', 'EU', 'Brexit', 'RevokeArticle50', 'RevokeA50']
['EU', 'Brexit', 'FinalSay']
['Brexit']
['PutItToThePeople', 'PeoplesVote', 'Brexit']
['Brexit', 'Britain', 'EU', 'GetOverIt']
['Brexit']
['Brexit']
['NoDeal', 'ScottishSix']
['NoDeal', 'ScottishSix']
['RevokeArticle50']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit', 'TheGreatAwakening', 'WWG1WGA']
['Brexit', 'enoughalready']
['fiasco', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['RevokeArticle50', 'Brexit']
['brexit']
['RevokeArticle50']
['Brexit']
['Brexit', 'PeoplesVote']
['brexit']
['brexit']
['RevokeA50', 'Brexit']
['SeriousShortagesProtocol']
['Brexit']
['brexit']
['brexit']
['Brexit']
['Brexit', 'NRW', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Européennes2019', 'Brexit', 'Christianophobie', 'LR', 'RN']
['Brexit']
['Brexit', 'Remoaniacs']
['Brexit']
['Brexit', 'BrexitShambles', 'Article50', 'RevokeArticle50']
['Brexit', 'May']
['Brexit']
['brexit']
['Brexit', 'Bollocks']
['BrexitExtension', 'A50', 'Brexit', 'NoBrexit', 'CancellingBrexit', 'RevokingA50', 'EU27']
['brexit']
['brexit']
['Brexit', 'Democracy']
['brexit']
[]
['Brexit']
['eu27', 'brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit', 'Fed', 'Crude', 'Oil']
['brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['brexit']
[]
[]
['Brexit', 'ImConfused']
['Brexit', 'Großbritannien', 'nicht', 'EU', 'May']
['BBCNews', 'Brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['Brexit', 'servicetweet']
['Brexit', 'RevokeArticle50']
['Brexit']
['Brexit']
['Brexit']
['SeriousShortagesProtocol']
['Brexit']
[]
['brexit', 'article50']
['Brexit']
[]
['Brexit']
['nationalkebabawards']
['Brexit']
['Brexit']
['MoggMentum', 'Brexit']
['petition', 'Brexit', 'Article50', 'RevokeArticle50']
['Brexit']
['Brexit']
['RevokeA50']
['Brexit']
['Brexit']
['Brexit', 'NotOnMySide', 'RevokeArticle50', 'RevokeArt50']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['RevokeArt50', 'Brexit']
['Brexit']
['brexit', 'peoplesvote', 'remainernow', 'revokeA50']
[]
['MakeUKGreatAgain', 'fascist', 'racist', 'mob', 'Brexit', 'TheresaMayStatement', 'Referendum']
['Brexit']
['brexit']
['Brexit']
[]
['Brexit']
[]
['help', 'Brexit']
['BrexitChaos', 'Brexit']
['Brexit']
['Brexit']
['EU', 'Brexit', 'FinalSay']
['funds', 'Brexit', 'IECGC']
['brexit']
['NGO', 'Justice4Serena']
['Brexit']
['brexit', 'conservatives']
['Brexit', 'BrexSHIT']
['Brexit', 'RevokeArticle50']
['brexit', 'MayMustGoNow']
['Brexit']
['Brexit', 'RevokeArticle50']
[]
['Brexit', 'WHCAagm']
['WorldPoetryDay', 'Brexit']
['Brexit']
['Brexit', 'Corbyn', 'RevokeArticle50']
['brexit', 'REVOKE_ARTICLE_50', 'petition']
['brexit', 'RevokeArticle50']
['Peoplesvote', 'Brexit']
['Brexit', 'countdown']
[]
['Brexit', 'RoyaumeUni', 'UE']
['Brexit']
['brexit']
['Brexit', 'bbcnews']
['Brexitshambles', 'MayMustGo', 'Brexit']
['BREXIT', 'PeoplesVote']
['PeoplesVote', 'Brexit']
['Brexit', 'Sternstunde', 'Demokratie', 'Populisten']
[]
['PeoplesVote', 'RevokeArticle50', 'euref', 'Brexit', 'PeoplesVote']
[]
['Brexit', 'VoteDownTheDeal', 'sovereignty', 'backstop']
[]
['Brexit']
['Brexit']
['brokenBritain', 'RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
['BrexitBetrayal', 'LeaveMeansLeave', 'NoDealBrexit', 'Brexit', 'MayMustGo']
['Brexit']
['brexit', 'theresamay']
['Brexit']
['Merkel', 'Regierungsflieger', 'EUGipfel', 'Brexit']
['Brexit']
['brexit']
['Brexit']
[]
['Brexit', 'Tory']
[]
['brexit']
['brexit', 'urwelcome']
['RevokeArticle50', 'SO24', 'Brexit']
['brexit', 'tradematters']
['Brexit']
['Brexit']
[]
['RevokeArticle50', 'Brexit']
['Brexit']
['BREXIT', 'PeoplesVote']
['Brexit']
[]
['Brexit']
['Brexit', 'NHS']
['Brexit']
['Brexit']
[]
['Brexit', 'China']
['brexit']
[]
['RevokeArticle50']
[]
['Brexit', 'BrexitShamble', 'RevokeArticle50', 'PeoplesVote']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['Brexit']
['Brexit', 'May']
['Brexit']
['brexit', 'PeoplesVoteNow']
['Brexit']
['Brexit', 'Großbritannien', 'nicht', 'EU', 'May']
['Brexit']
['EEA', 'EFTA', 'Brexit']
['brexit', 'shambles']
['brexit']
['RevokeArticle50', 'Brexit']
[]
['Brexit']
[]
['RevokeArticle50', 'Brexit', '5live']
['BREXIT']
['Brexit']
['actu', 'Assurancechômage']
['Brexit']
['Brexit']
[]
['Brexit']
['remainernow']
['Brexit', 'BrexitShamble', 'Parliament', 'Remain', 'Brexiteers', 'Remoaners']
['RevokeArticle50']
['Brexit']
['Brexit', 'GoWTO']
['PeoplesVote', 'Brexit', 'MayMustGo']
['brexit']
['Europe']
[]
['TheresaMay', 'Brexit']
['May']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['UK', 'EU', 'Brexit', 'Petition', 'Article50', 'PeoplesVote']
[]
['brexit', 'travel']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['RevokeArticle50']
['Brexit', 'RevokeArticle50', 'Remain', 'Brexit']
['RevokeArticle50', 'Brexit', 'RevokeArt50', 'RevokeA50Now', 'RevokeArticle50Now']
['Brexit']
['brexit']
['Brexit']
['Article50', 'Brexit']
['Brexit']
['Brexit']
['WorldPoetryDay', 'Brexit']
['brexit', 'MaySpeech']
['brexit', 'German']
['RevokeA50', 'RevokeArticle50', 'RevokeArt50', 'Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit', 'Leave']
['RevokeArticle50', 'brexit', 'Maymustgo']
['Tusk', 'May', 'WithdrawalAgreement', 'Brexit']
['brexit']
['Brexit', 'Deals']
['Brexit', 'RevokeArticle50', 'PutItToThePeople', 'PeoplesVote', 'FinalSay']
[]
[]
['Brexit']
['brexit', 'Parliament', 'TheresaMayResign']
[]
['Brexit']
['brexit']
['RevokeArticle50', 'Brexit']
['StopBrexit', 'PeoplesVote', 'PeoplesMarch', 'Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['RevokeArticle50', 'brexit', 'EU', 'democracymeansnothing']
['Brexit']
['brexit', 'brexshit']
['Merkel', 'Brexit']
[]
['Brexit']
['Brexit']
[]
['brexit']
[]
[]
['Brexit']
['EU', 'Brexit', 'BrexitVote', 'FinalSay']
['Brexit']
['brexit']
['Brexit']
['EU', 'Brexit', 'FinalSay']
[]
[]
['EU', 'Brexit']
['Article50', 'Brexit']
['brexit']
[]
['stocks', 'ftse250', 'housebuilders', 'Brexit']
['Brexit']
['extension', 'Brexit']
[]
['brexit', 'RevokeA50']
['Brexit']
['Brexit', 'RevokeArticle50', 'Remain', 'Brexit']
[]
[]
[]
['Brexit']
['brokenBritain', 'RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
[]
[]
['Brexit', 'RoyaumeUni', 'UE']
['Ichabod']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['RevokeArticle50']
['brexit']
['Brexit']
['Alarmstufe', 'ChartofDoom', 'Powell', 'Brexit', 'Deutschland', 'China']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['Weidel', 'Brexit', 'Deutschland', 'AfD']
['CorkToday', 'Brexit', 'M20', 'GardaFile']
['Brexit']
['Brussels', 'EUCO', 'Brexit', 'EU']
['Brexit']
['Brexit', 'WorldPoetryDay']
['brexit', 'brexitshambles']
['EU', 'Brexit', 'FinalSay']
['Brexit']
['Brexit']
['Brexit']
['IsleofWight', 'iwnews', 'Brexit', 'IOW']
['Brexit']
['Brexit']
['Brexit']
[]
['brexit']
['NODEAL', 'brexit']
[]
[]
['brexit']
['brexit']
['Brexit', 'Fact']
['Brexit', 'RevokeArticle50']
['Brexit']
['Brexit']
['brexit', 'remain', 'LeaveEU']
['EU']
['EUwahl', 'oe1klartext', 'Brexit', 'Ungarn']
['Brexit']
['RevokeA50']
['brexit', 'government']
[]
['Brexit', 'UK', 'EU']
['Brexit']
['Brexit']
[]
['EU']
['Maybot', 'Brexit', 'BrexitExtension', 'PeoplesVote', 'BrexitVote', 'BrexitDeal']
['Peoplesvote', 'Brexit']
['brexit']
['Brexit']
['Luxembourg', 'CEOs', 'UK']
['brexit']
['brexit']
['brexit']
['MoggMentum', 'Brexit']
['Brexit']
['RevokeArticle50']
[]
['SpyGate']
['Brexit']
['Brexit']
['MoggMentum', 'Brexit']
[]
['BREXIT', 'PeoplesVote']
[]
[]
['janeygodleyvoiceover', 'brexit']
['Brexit']
['brexit']
['IsItOk', 'JacindaArdern', 'brexit', 'NoNonsense', 'wouldHaveItDoneByNow']
['brexit']
['Brexit']
['MoggMentum', 'Brexit']
[]
[]
['Brexit', 'Leave']
['Brexit']
['Brexit', 'StopBrexit', 'StopBrexitSaveBritain', 'RevokeArticle50', 'RevokeA50Now']
['Brexit', 'Fintech', 'startups', 'UK', 'investment', 'EU']
['nodeal', 'Brexit', 'RevokeArt50', 'PeoplesMarch', 'PutIttothePeople', 'peoplesvote', 'RemainEU']
['Article50', 'RevokeArt50', 'brexit', 'remain']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['Brexit']
[]
['RichardMurphy', 'Scotref', 'Indyref2', 'Scotland', 'Brexit', 'May']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['SeriousShortagesProtocol']
[]
['RevokeArticle50', 'Brexit', 'PeoplesVote']
['Brexit', 'Brexit', 'Eurozone', 'Europe']
['Brexit']
['NotOnMySide', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['UKPetition', 'RevokeArticle50', 'RevokeArt50', 'Brexit']
['Brexit']
['Brexit']
['Baudet', 'FvD', 'pulpkrant', 'brexit', 'nonexit']
['brexit']
['RevokeArticle50', 'Brexit']
['BrokenMedia', 'MayMustGo', 'Brexit', 'DontBlameUsBlameHer', 'NotOnMySide', 'NothingHasChanged', 'NeverTrustATory', 'politicslive', 'bbcqt']
['TakeBackControl', 'Brexit', 'LetsGoWTO']
['brexit', 'brexitshambles', 'brexitmayhem', 'brexitchaos', 'RevokeArticle50']
['RevokeArticle50', 'Brexit']
['Brexit', 'BrexitShambles']
['Brexit']
['Brexit']
['EU', 'BigBrother', 'Brexit']
['INAelectionObserverSOS', 'Brexit', 'INAelectionObserverSOS']
[]
['Brexit']
['EEA', 'EFTA', 'Brexit']
['Brexit', 'Article50']
['EU', 'Brexit', 'FinalSay']
['Brexit']
['brexit']
['WorldPoetryDay2019', 'Brexit', 'RevokeA50Now']
['Brexit']
[]
['brexit']
['Brexit', 'Brexit', 'PeoplesVote', 'FinalSay', 'BrexitBallot']
['Brexit', 'ChuckaUmunna']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['Brexit']
['Brexit', 'petition', 'RevokeArticle50', 'RevokeArt50', 'RevokeA50Now']
['Brexit']
['Weidel', 'Brexit', 'Deutschland', 'AfD']
['Brexit']
['brexit']
['brexit']
['Brexit']
[]
['ThursdayThoughts', 'Brexit']
[]
['Brexit']
['SoundCloud', 'np', 'tune', 'revokearticle50', 'dub', 'brexit', 'conservatives', 'toriesout']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexiteers', 'RevokeArticle50', 'Brexit']
[]
[]
['BrexitBunker', 'Brexit']
['NoDeal', 'Brexit']
[]
['Labour', 'PeoplesVote']
['Brexshit', 'Brexit']
[]
['brexit']
['Brexit']
['Brexit', 'podcast', 'Brussels']
['Brexit']
['Brexit']
[]
['Brexit', 'EU']
['Brexit', 'Article50']
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'Article50']
[]
['Brexit']
[]
['Brexit']
['brexit', 'RevokeA50Now', 'RevokeArticle50Now']
['brexit']
['brexit', 'StopBrexit']
['Brexit']
['brexit', 'AlanPartridge']
['EU', 'Brexit']
['brexit', 'RevokeA50Now']
[]
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['NoDeal', 'ScottishSix']
[]
[]
['Brexit']
[]
['Brexit']
['Brexit', 'StopBrexit', 'StopBrexitSaveBritain', 'RevokeArticle50']
['brokenBritain', 'RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
[]
['Brexit', 'BrexitShambles']
['Brexit', 'BrexitUpdate', 'EU', 'UK', 'Politics', 'Article50']
['Brexit']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit', 'BrexitChaos']
['Article50', 'TheresaMay', 'TheresaMayStatement', 'EU', 'Brexit', 'BrexitVote', 'RevokeArt50', 'FinalSay', 'PeoplesVote']
['Eurostar']
[]
['TheresaMay']
[]
['brexit']
['Brexit']
['Omnishambles', 'Brexit']
[]
['RichardMurphy', 'Scotref', 'Indyref2', 'Scotland', 'Brexit', 'May', 'RevokeArticle50']
['brexit']
['Brexit']
['MayMustGo', 'Brexit', 'RevokeArticle50']
['Brexit']
['brexit']
['brexit']
[]
[]
['Brexit', 'RiskManagement']
['Brexit']
['Brexit']
[]
['Brexit', 'JustMakeItStop', 'FinalSayForAll']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['Merkel', 'Brexit']
[]
['UKgovernment', 'StopBrexit', 'Brexit', 'ListenToThePeople', 'PeoplesVote']
[]
[]
['Brexit', 'Großbritannien', 'Deutschland', 'euco']
['Brexit']
['EU', 'Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['nrw', 'Brexit']
['Brexit']
['brexit']
['Brexit']
[]
['TheresaMay', 'Brexit']
['brexit', 'theresamay', 'MayMustGo', 'chickenliveredshits']
['Brexit', 'oplossingen']
[]
[]
['Brexit']
['Brexit']
['Food', 'Feed', 'Hygiene', 'Safety', 'EU', 'Senedd', 'Wales', 'Brexit', 'Bwyd', 'UE']
['Brexit', 'Brexitshambles', 'BrexitExtension']
['EUETS']
[]
['Brexit', 'PeoplesVote', 'NotOnMySide']
['RevokeArt50']
['Brexit']
['Maischberger', 'Europa', 'Brexit']
[]
['Brexit']
['brexit']
['RevokeArticle50', 'Brexit']
['Brexit', 'RevokeArticle50', 'ThursdayThoughts']
['Brexit']
['EUCO', 'Malta', 'EUCO']
['EU', 'Brexit']
['brexit']
['Brexit']
['May', 'Brexit']
['Brexit']
['Brexit', 'TheresaMay', 'BrexitExtension', 'UK', 'EU', 'Politics']
['MoggMentum', 'Brexit']
['noafd', 'brexit']
['Brexit']
['NoDeal', 'ScottishSix']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit', 'RevokeArt50', 'FuckingBrexit']
[]
['Brexit', 'NoDeal']
['Lexit', 'Brexit']
['Brexit']
['may', 'brexit']
['brexit']
['Brexit', 'uk']
['Brexit', 'LetItStop']
['Brexit']
[]
[]
['brexit', 'Article50', 'petitions']
['Brexit']
['RevokeArticle50']
[]
['RevokeArticle50']
['Brexit']
['petitions', 'brexit', 'fail']
['brexit']
['Brexit']
['Brexit']
['BRexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['brexit', 'bbc', 'revokepetition']
['innovation', 'sales', 'Brexit']
['brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
[]
['Brexit', 'selfDestruct']
['Brexit']
['Brexit']
['EU']
[]
[]
[]
['Brexit']
['Brexit']
[]
['brexitcast', 'lambs', 'lambing', 'brexitcast', 'farmers', 'ComeBye', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['brexit']
['EU', 'Brexit', 'FinalSay']
['brexit']
['Brexit']
['MoggMentum', 'Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['MoggMentum', 'Brexit']
['EUTreaty']
['Brexit']
[]
['EU', 'Brexit', 'BrexitVote', 'FinalSay']
['pmqs', 'Brexit']
['Brexit', 'farmers']
['brexit', 'brunel', 'clinic']
['bitcoin', 'Brexit', 'HappyHoli', 'SpringEquinox', 'firstdayofspring', 'TheChallenge33', 'RevokeArticle50']
[]
['Brexit']
[]
['Brexit']
[]
['Notebook', 'Espana']
[]
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit', 'Cartography']
['brexit']
[]
['Brexit']
['brexit']
['brexit', 'RevokeArticle50', 'MayMustGoNow', 'eu']
[]
['Brexit']
['Brexit', 'BitchesAgainstBrexit', 'Remain']
['Brexit']
['Brexit', 'EU']
['Brexit']
['Brexit']
['Brexit']
['BrexitBetrayal', 'LeaveMeansLeave', 'NoDealBrexit', 'Brexit', 'MayMustGo']
[]
[]
['franchise', 'Brexit']
['brexit']
['Brexit']
['Brexit']
['EU', 'Brexit', 'BrexitVote']
[]
[]
['Brexit', 'BrexitShambles', 'MayMustGoNow', 'RevokeA50']
['brexit']
['Brexit', 'PeoplesVote']
[]
['RevokeArticle50']
['sabotage', 'paranoid', 'Brexit', 'RevokeArticle50']
['Brexit']
['Farmers', 'Brexit', 'agricultural', 'planning', 'law']
[]
['Merkel', 'Regierungserklärung']
['UKSOPRO']
['brexit']
['Brexit']
['brexit']
['brexit']
[]
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['ERG', 'Brexit', 'BrexitShambles']
['EU', 'Brexit', 'Politics', 'TheresaMay', 'BrexitExtension']
['brexit']
['NotOnMySide', 'RevokeA50', 'Brexit']
['Leave', 'Remain', 'inflation', 'Brexit']
['Brexit']
['EU', 'Brexit', 'FinalSay']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['Brexit']
[]
['MayMustGo', 'Brexit']
['Brexit']
['Brexit', 'RevokeArt50']
['Brexit']
['RevokeArticle50', 'Brexit', 'RevokeArticle50', 'NotOnMySide']
['Brexit']
['TheresaMay', 'Brexit']
['RevokeArticle50', 'UKGOV', 'Brexit', 'Theresamay', 'Dictatorship', 'UKisnowadictatorship']
['Brexit']
['peoplesvote', 'brexit']
['Brexit', 'MediaBlackout']
['Brexit']
['Brexit']
[]
['Corbyn', 'Brexit']
['TheresaMay', 'Brexit']
['Brexit']
['Brexit', 'EU']
['Brexit', 'TheDrumArms', 'AWEurope']
['brexit']
['EU', 'Brexit', 'BrexitVote']
[]
['EUwahl', 'oe1klartext', 'Brexit', 'Ungarn', 'EUelections2019']
['Brexit', 'RevokeArt50']
['brexit']
['brexit']
['Brexit', 'EU']
[]
['Suspicious', 'Conspiracy', 'Brexit']
['RevokeArt50', 'brexit', 'PeoplesMarch']
['conspiracy', 'brexit', 'petition', 'pv', 'RevokeArt50']
[]
['brexit']
[]
[]
['Brexit', 'PeoplesVote']
[]
['theresamay', 'brexit']
['RevokeArticle50', 'brexit', 'ThursdayThoughts']
[]
['Brexit']
['petition', 'brexit', 'RevokeArt50']
['Brexit', 'PeoplesVote']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit', 'BrexitCrisis', 'Brexitus']
['Brexit']
['forexlesson', 'forextrading', 'forex', 'GBP', 'Brexit']
['Brexit', 'jeremyvine']
['RevokeArticle50']
['Brexit']
[]
['Brexit']
['magnify', 'Brexit', 'vss365']
[]
['BrexitExtension', 'Brexit']
[]
['Brexit']
[]
['Brexit', 'IamEuropean']
[]
[]
['Brexit']
[]
['brexit']
['corbyn']
['brexit', 'TakeBackControl']
['Brexit', 'RevokeArticle50Now', 'PeoplesVote']
['MoggMentum', 'Brexit']
['Brexit']
['Brexit', 'fuckthetories']
[]
[]
['petitionwatch', 'brexit', 'RevokeArticle50']
[]
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['GeoBlocking', 'EU', 'Senedd', 'Wales', 'Cymru', 'Brexit']
[]
['isitok', 'headinthesand', 'brexit']
['Brexit']
['Brexit']
['PrimeMinister', 'British', 'Dunfermlin', 'Dover', 'brexitshambles', 'Brexit']
[]
[]
['Brexit', 'ownit']
['Brexit', 'Scotland', 'Democracy']
[]
[]
['brexit']
['Brexit']
[]
['Brexit']
[]
['RevokeArticle50', 'brexit']
['Brexit']
['brexit', 'TheDrumArms', 'AWE2019']
['PeoplesVote', 'Brexit', 'LeaveMeansLeave']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Européennes2019', 'Brexit', 'Christianophobie', 'LR', 'RN']
['Brexit']
['RevokeArticle50']
['Brexit']
['housing', 'property', 'Brexit']
['Brexit']
['Brexit']
['brexitbribery', 'Brexit', 'takecontrol']
['Brexit']
['brexit', 'todaydsor']
[]
['brexit']
['Brexit', 'May', 'salvadordali']
['TheresaMay', 'Brexit']
['MentalHealth', 'suicide', 'Brexit', 'autism', 'loneliness', 'trans', 'LGBT', 'mentalillness', 'awareness']
[]
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Européennes2019', 'Brexit', 'Christianophobie', 'LR', 'RN']
['NoDeal', 'Brexit']
['article50', 'brexit', 'RevokeA50Now']
['brexit']
['Brexit']
['skynews', 'Brexit']
['Brexit']
['NoDeal', 'ScottishSix']
['Brexit', 'HappyPurim']
['Brexit']
['Brexit']
['xauusd', 'brexit']
[]
['Brexit']
[]
['Brexit', 'EUxit']
['Brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['Brexit']
['ThursdayThoughts', 'Brexit']
['Brexit']
['StopBrexit', 'PeoplesVote', 'PeoplesMarch', 'Brexit']
[]
['Brexit']
['rouamat_skai', 'Συμφωνια', 'Greece', 'skai', 'brexit', 'Τωρα', 'Euroleague', 'Athens']
['brexit']
['brexit']
['Brexit', 'MayMustGo', 'RevokeArticle50', 'RevokeA50']
['3satmakro', 'Doku', 'fischerei', 'brexit', 'kutterfisch', 'eu', 'quoten', 'EUCO']
[]
['Brexit']
['Brexit', 'RevokeArticle50', 'PutItToThePeople', 'PeoplesVote', 'FinalSay']
['RevokeArticle50', 'Brexit']
['stopbrexit', 'brexit']
['brexit']
['brexit']
['Brexit', 'RevokeArt50']
['Brexit']
['RevokeArt50', 'EU', 'Brexit', 'RemainEU']
['RevokeArticle50', 'TheresaMay', 'MayMustGo', 'Brexit', 'EUCO', 'EU', 'BBC', 'PeoplesVote']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['PeoplesMarch', 'PeoplesVote', 'Brexit']
['brexit']
['Brexit', 'BRINO']
['Brexit', 'Cartography']
['Brexit', 'Sternstunde', 'Demokratie', 'Populisten']
['brexit', 'Klimastreik']
['Brexit']
['Brexit']
[]
[]
['Brexit', 'Wirtschaft', 'NRW']
['Brexit']
[]
['UK', 'exporters', 'importers', 'Brexit', 'internationaltradeconf', 'ONECPD']
['brexit']
['Brexit']
[]
['Brexit']
['IndustryNews', 'Brexit', 'construction']
['Brexit']
['RevokeArticle50', 'petition', 'brexit', 'badgateway']
[]
['Brexit', 'EUCO']
[]
['Brexit', 'languages']
['BREXIT']
['MoUs', 'Brexit']
['Brexit']
['brexit', 'RevokeArticle50']
['brexit']
['EU', 'Brexit', 'FinalSay']
[]
['Brexit', 'UKRemainers', 'LeaveTheLightOnForUs']
['Brexit', 'RevokeA50']
['Immigration', 'uk', 'pay', 'international', 'Visa', 'visas', 'ForeignPolicy', 'ENCOURAGEMENT', 'skills', 'Brexit', 'opportunity', 'EU', 'earn']
['RevokeArticle50']
['Brexit', 'China']
['Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit', 'RevokeArt50']
['Brexit']
['WTOBrexit', 'wto', 'brexit']
['brexit']
['MoggMentum', 'Brexit']
['Brexit', 'UKPolitics']
['seo', 'marketing', 'healthcareit', 'smallbusiness', 'Investing', 'Trading', 'Finance', 'HedgeFunds', 'MutualFunds', 'PrivateEquity', 'Portfolio', 'Assets', 'Income', 'Capital', 'money', 'ETF', 'Brexit', 'Defeat', 'latest', 'May', 'mean', 'news', 'Theresa', 'travel', 'Vote']
['Brexit']
[]
['brexit']
[]
['brexit']
['rouamat_skai', 'Συμφωνια', 'Greece']
[]
['Brexit', 'reality']
['brexit']
['Breaking', 'UK', 'Brexit']
[]
['Brexit']
[]
['Brexit', 'LeaveToMarch']
[]
['Brexit']
['Brexit', 'Article50']
[]
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['article50', 'brexit', 'conspiracy', 'RevokeArt50']
['Brexit']
[]
['Brexit', 'r4today']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['EU', 'brexit', 'RevokeArticle50', 'FBPE']
['Brexit']
['Brexit']
['UK', 'GBPUSD', 'Brexit', 'Economy']
['brexit', 'RevokeArticle50', 'petition', 'websitedown']
['Brexit']
['Brexit', 'theresamay', 'IwantEUelections', 'RevokeArticle50Now', 'PeoplesVoteNow']
['Brexit']
['Brexit', 'EU', 'Brussels']
[]
['Brexit']
[]
['Brexit']
['Brexit', 'SammyJ']
['Brexit']
[]
['Brexit']
['France', 'UK', 'Brexit']
[]
['Brexit']
['MW3', 'Brexshit', 'Brexit']
['CycloneIdai', 'Brexit', 'DiplomaticCircles']
['EU', 'Brexit']
['Brexit']
['Brexit']
[]
['brexit']
[]
['brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit', 'MusicHasNoHardBorder', 'StillBatshitBrexit']
['Brexit']
['Brexit']
[]
['brexit', 'RevokeArticle50', 'RevokeArticle50Now', 'RevokeA50Now', 'remain']
['Twitter', 'Brexit', 'Friends']
['RevokeArticle50', 'Brexit', 'Peoplesvote']
['brexit']
['Brexit']
['brexit', 'Referendum']
['Brexit']
['brexit', 'TheDrumArms', 'AWE2019']
[]
['AfD', 'Brexit', 'EU', 'Bundestag']
['RevokeArticle50', 'brexit']
['Brexit']
['Brexit']
['Brexit', 'BrexitShambles']
['brexit', 'bruxelles', 'epwahl', 'euwahl', 'mep', 'öxit', 'oida']
['Brexit', 'EU']
[]
['Brexit', 'BrexitBetrayal']
['Brexit']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['Brexit', 'FirstWorldProblems', 'happy']
['Weidel', 'Brexit', 'Deutschland', 'AfD']
['RevokeArticle50', 'Brexit', 'RevokeA50Now']
['polcan', 'budget', 'polqc', 'Brexit']
['Brexit']
['Brexit']
['r4today']
['May', 'Bruselas', 'brexit']
[]
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['Brexit', 'Conservative']
[]
['MoggMentum', 'Brexit']
['Brexit']
['GBPUSD', 'UK', 'Brexit', 'Economy']
['Brexit']
['MoggMentum', 'Brexit']
['boudicea', 'Brexit']
['Brexit']
[]
[]
['Brexit']
[]
['EU', 'Brexit', 'RevokeArticle50', 'FinalSay']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
[]
['brexit', 'TheresaMay', 'TheresaMayStatement']
['Remainers', 'Brexit', 'Brussels', 'EU']
['MoggMentum', 'Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['Brexit']
[]
['PeoplesVoteNow', 'NotOnMySide', 'RevokeArt50', 'REVOKE_ARTICLE_50', 'RevokeRemainRebuild', 'brexit']
['Brexit']
['Brexit']
['RevokeArticle50', 'NotOnMySide', 'Brexit']
['Brexit']
[]
['brexit', 'brexitvote', 'remain']
['brexit']
[]
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['Brexit']
['Bercow', 'Arsenal', 'brexit']
['Brexit']
['r4today', 'Brexit', 'RevokeArt50']
['brexit']
['Brexit']
['brexit', 'Merkel']
[]
['Brexit', 'HappyPurim']
[]
[]
[]
['brexit', 'PeoplesVote']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Maischberger', 'Europa', 'Brexit']
['brexit', 'brunel', 'clinic', 'eaglelab', 'bbc']
['Brexit']
[]
['Brexit']
[]
['brexit']
['brexit']
['Brexit']
['Brexit']
['TheresaMay', 'RevokeArticle50', 'brexit', 'BrexitChaos', 'PeoplesVote']
['Brexit', 'entreprises']
[]
['Brexit']
['Brexit']
['RevokeArt50', 'GoWTO', 'Brexit']
['Brexit', 'RevokeArt50', 'RevokeA50Now', 'NotOnMySide']
['Brexit', 'IamEuropean']
[]
['Brexit', 'Prepare4Brexit']
['BrexitChaos', 'Brexit', 'Switzerland']
['TheresaMay', 'Brexit']
['EU']
[]
['Corrupt', 'Brexit', 'RevokeArticle50', 'Corruption']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['Brexit']
[]
[]
['FOMC', 'USD', 'Yen', 'JPY', 'GBP', 'Brexit']
['MoggMentum', 'Brexit']
['brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
['Brexit']
['JeramyHuntMP', 'Brexit']
['SovereignWealthFunds', 'investment', 'Brexit']
[]
['Brexit', 'podcast', 'Brussels', 'Theresa']
[]
[]
['EU', 'Brexit']
[]
['brexit', 'may', 'ue']
['ThursdayThoughts', 'spring', 'steunkousen', 'Brexit']
['Bundestag', 'Bundestaglive', 'Brexit', 'AfDwürgt']
['Brexit']
['seahorse', 'feelgood', 'brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Borowski', 'Brexit']
['SeriousShortagesProtocol']
['brexit']
[]
['MoggMentum', 'Brexit']
[]
['Brexit']
[]
['Brexit']
['Brexit']
['Article50', 'Brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['brexit']
['Brexit']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['EU']
['austerity']
['Brexit']
['Brexit']
['Brexit']
['brexit', 'bclepconference19']
[]
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit', 'RevokeArticle50', 'makeitstop']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['TheresaMay', 'Parliament', 'Delays', 'Brexit', 'Sterling']
[]
['Brexit']
[]
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
['Brexit']
['brexit']
[]
['Brexit', 'RevokeArticle50']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit']
[]
['brexit']
['Brexit']
['Brexit']
[]
['ioespongoiltricolore', 'salvini', 'primagliitaliani', 'Lega', 'LuigiDiMaio', 'UE', 'Globalist', 'brexit', 'GiletsJaunes', 'Bruxelles']
['Brexit']
['petition']
['Brexit', 'shambles']
['brexit']
['JeremyCorbyn', 'ChukaUmunna']
[]
[]
[]
[]
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['remain', 'revoke50', 'peoplesmarch', 'brexit']
[]
['Brexit']
['MoggMentum', 'Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Leave', 'RemainerNow', 'PeoplesVote', 'Brexit']
['Brexit']
[]
['brexit']
['Brexit']
['brexit']
['brexit']
['brexit', 'DefyTM']
['Brexit']
[]
['Brexit']
['Brexit']
['petitionwatch', 'brexit', 'RevokeArticle50']
[]
['RevokeArticle50', 'Brexit', 'BrexitShambles', 'BrexitExtension']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['Brexit']
['brexit', 'PeoplesVote']
['Brexit']
['brexit']
['Brexit']
['Brexit', 'Article50']
['Brexit']
[]
['Européennes2019', 'Brexit', 'Christianophobie', 'LR', 'RN']
['Brexit', 'PeoplesVote', 'EU']
['Brexit']
['Brexit']
[]
['brexit']
[]
['Brexit']
['Brexit']
[]
['Brexit']
['brexit']
['Brexit']
['brexit']
['Brexit', 'TheresaMay']
[]
['Brexit']
['Britain']
['eurozpravycz', 'Merkel', 'brexit']
['Brexit']
['Brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['nomakeup', 'brexit']
['brexit']
['Brexit']
[]
['Brexit']
['TheresaMay', 'BrexitVote', 'BrexitShambles', 'Brexit', 'Tories', 'BrexitShamble', 'BrexitShambles', 'backstop']
['brexit', 'PeoplesVote', 'PeoplesVoteNow', 'PeoplesMarch']
[]
['brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['SeriousShortagesProtocol']
['Brexit', 'BrexitShambles', 'BrexitMeansExit']
['Brexit', 'Fact']
[]
[]
['Brexit']
['unitedkingdom', 'Brexit', 'RevokeArticle50']
['Brexit']
['ThursdayThoughts', 'SJW', 'Brexit', 'Chillout']
['BrexitVote', 'Brexit', 'BrexitChaos', 'Article50', 'EU', 'indyref2', 'DissolveTheUnion']
['Brexit']
['brexit']
[]
['Brexit']
['FarageOnLBC', 'Farage', 'Brexit', 'racism', 'HopeNotHate']
['Brexit', 'whatisshedoing']
['Brexit']
[]
['Brexit', 'RevokeArticle50']
['UK', 'EU', 'RewriteTheRules', 'EU', 'Economy', 'UK']
['Brexit']
['Brexit']
[]
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['Brexit']
['Brexit', 'StopBrexit', 'StopBrexitSaveBritain', 'RevokeArticle50', 'RevokeA50Now']
['EU', 'Brexit']
['Brexit']
['Brexit']
['RevokeArticle50', 'Brexit']
['WorldPoetryDay', 'brexit']
[]
['remainernow']
['UK', 'EU', 'RewriteTheRules', 'EU', 'Economy', 'UK']
['brexit']
['RevokeArticle50']
['brexit']
['TheresaMayStatement', 'Brexit']
['WorldPoetryDay', 'SOVEREIGNTY', 'Youtube', 'brexit', 'poetry', 'spokenword']
['Brexit']
['Macron', 'Africa', 'papers', 'Brexit']
[]
['TheForest', 'LetsPlay', 'youtube', 'twitch', 'Artikel13', 'Brexit']
['EU', 'Brexit', 'FinalSay']
['Brexit', 'NoDealBrexit', 'NoDeal', 'Haulier', 'Haulage']
['BREXIT']
[]
[]
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['MayMustgo', 'CorbynMustGo', 'Brexit']
['Brexit']
['Brexit']
['Brexit', 'ConstitutionalCrisis']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
[]
['brexit', 'peoplesvote', 'socent', 'vote2revoke']
['ThursdayThoughts', 'Brexit']
['Brexit']
['Brexit']
['Brexit']
['Brexit']
['EURO2020', 'Brexit', 'LotsOfSocks']
[]
['brexit']
[]
['Brexit']
[]
['UK', 'EU', 'RewriteTheRules', 'EU', 'Economy', 'UK']
['Weidel', 'Brexit', 'Deutschland', 'AfD']
['Brexit', 'Tory']
[]
[]
['Brexit', 'RevokeArt50']
['Brexit', 'BrexitCrisis', 'RevokeArticle50']
['Brexit', 'BrexitChaos']
[]
['Brexit']
['brexit']
['brexit']
['Brexit', 'EU', 'NoDeal', 'BrexitChaos']
['brexit']
['Brexit']
[]
['r4today', 'Brexit', 'RevokeArt50']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
[]
['Brexit']
['Brexit', 'RevokeArticle50', 'article50petition', 'Article50']
['brexit', 'TheresaMay']
['Brexit']
['EU', 'Brexit']
['UK', 'EU', 'RewriteTheRules', 'EU', 'Economy', 'UK', 'Brexit', 'economic']
['RevokeAndRemain', 'Brexit']
['Brexit']
['Brexit', 'idiotyzm']
['WorldWarII', 'Brexit']
[]
['UniaEuropejska', 'WielkaBrytania', 'brexit']
['brexit']
['Brexit', 'hayfever', 'fml', '2ndvote', 'remain']
['lchist', 'Brexit', 'HistEdChatie']
['Brexit']
['Brexit']
['brexit', 'BrexitShambles']
['Brexit']
['brexit']
['EU', 'Brexit', 'FinalSay']
['Brexit']
['Brexit', 'Remain']
['Brexit']
['austerity']
['EU', 'WTO', 'NoDeal', 'Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
[]
[]
[]
[]
['brexit']
['Brexit']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['Brexit']
['London', 'Brexit']
['Brexit']
['fuckbrexit', 'brexit', 'Article50', 'useless']
[]
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['ScottishSix', 'CJEU', 'Art50', 'revoked']
['teresamay', 'Brexit', 'BrexitShamble']
[]
['NoDeal', 'ScottishSix']
['Brexit']
['Brexit']
[]
[]
['Brexit']
['brexit']
['Brexit']
['Brexit']
['brexit', 'TheresaMay', 'MeaningfulVote']
['brexit', 'brexit']
[]
['Brexit']
['Brexit']
['Brexit']
['Weidel', 'Brexit', 'Deutschland', 'AfD', 'EU', 'BundestagLive', 'Bundestag', 'ARD']
[]
[]
['Brexit']
['Brexit']
[]
[]
['brexit', 'morons']
['Brexit']
['Brexit']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['RevokeArticle50', 'Brexit']
['NoDeal', 'Brexit']
[]
['Brexit']
['Brexit']
[]
[]
['brexit']
[]
[]
['Brexit', 'Referendum']
['Article50', 'EU', 'NotOnMySide', 'Brexit']
['Brexit']
['ThursdayThoughts', 'Brexit', 'business', 'smallbiz', 'MiltonKeynes', 'Smallbusiness', 'Trump', 'BusinessTravel', 'quote', 'Britain']
['Brexit', 'UK']
['JeremyHunt', 'TheresaMay', 'InfamyTheyAllHaveItInfamy', 'Brexit', 'WTF']
['Brexit', 'RevokeArticle50', 'PeoplesVote', 'PeoplesVoteMarch']
['Brexit']
['Brexit']
['clients', 'investors', 'hnwi', 'pensioners', 'invest', 'forex', 'managed', 'accounts', 'cityofinvestment', 'fx', 'uk', 'Brexit', 'Pakistan', 'Iran', 'UAE', 'Iraq', 'Qatar', 'Kuwait', 'Oman', 'Lebanon', 'Jordan', 'Yemen', 'Bahrain', 'Syria', 'SaudiArabia', 'Egypt', 'eth']
['Brexit']
['Brexit']
['brexit']
['Brexit']
['Brexit', 'yourenotonmyside']
['Brexit']
['NotOnMySide', 'Brexit', 'BrexitCatastrofuck', 'BrexitChaos', 'BrexitCrisis']
['Brexit']
['Brexit', 'Article11', 'Article13', 'SaveYourInternet']
['Brexit']
['Brexit', 'EU']
[]
['Brexit']
['RevokeArt50', 'RevokeA50Now', 'brexit']
[]
['Brexit']
['Brexit', 'Europeennes2019']
['FEICA', 'NoDealBrexit', 'chemicalregulations']
['petition', 'twitter', 'RevokeArticle50', 'brexit', 'theresamay', 'RT']
['Hypocrite', 'nohate', 'divisive', 'pathetic', 'inconsistant', 'Diversity', 'brexit']
['Brexit']
['BBCNews', 'Brexit']
[]
[]
['ai', 'brexit']
['brexit']
['Brexit']
['NotOnMySide', 'May', 'RevokeA50', 'Brexit', 'NoDeal']
['TheresaMay', 'Brexit', 'politics']
[]
['Brexit', 'RevokeArt50']
['Brexit']
['Brexit', 'letsgoforward']
['Malaga', 'Andalousie', 'ErasmusPlus']
['Brexit']
['Brexit']
['Brexit']
[]
['Brexit']
['brexit']
['brexit']
['Brexit', 'FuckOff']
['Brexit']
['brexit']
['Brexit']
['Brexit']
['RevokeArticle50', 'brexit']
['Brexit']
['Petition', 'Brexit']
['Immobilier', 'Brexit', 'RoyaumeUni', 'Londres']
['brexit']
[]
['Brexit']
[]
['Brexit', 'Owers']
['Brexit']
[]
['NoDeal', 'ScottishSix']
[]
[]
['Brexit', 'NoBrexit', 'delayedbrexit']
['Brexit']
['Barclays', 'Brexit']
['Brexit']
['brexit']
['Brexit', 'UKNationalsinPortugal', 'UKNationalsinEU', 'UKinPortugal']
[]
['UK', 'London', 'BrexitMeansBrexit', 'RealEstate', 'Housing', 'Property']
[]
['brokenBritain', 'RevokeArticle50', 'brexshit', 'FBPE', 'Brexit', 'exitbrexit', 'stopbrexit']
['Brexit']
['RevokeArticle50', 'PeoplesVote', 'Brexit']
['Brexit']
['Brexit', 'RevokeArt50']
['Brexit']
['brexit']
['brexit']
['Brexit']
['Brexit']

What images are Brexit hashtaggers using? Let's look at the first 100 tweets that contain images.

In [64]:
from IPython.display import Image, display

for i,x in json_normalize(json1[json1["extended_entities"].notnull()]["extended_entities"]).iloc[0:100].iterrows():
    for y in x["media"]:
        display(Image(y["media_url"]))

Retweets, quotes, and replies

  • Retweets: retweeting someone else's tweet
  • Quote: including someone elses's tweet, but adding your own text
  • Reply: directing a tweet to someone by using @username

These three tweet types have specific metadata we can utilize to include or filter them

In many studies (language/linguistics), researchers have chosen to filter out retweets and quotes

  • Do not represent "genuine" discourse in the same way as an original tweet?
In [97]:
json1["quoted_status"].notnull()

json1["retweeted_status"].notnull()

for i,x in json1.iloc[0:1000].iterrows():
    if x["in_reply_to_screen_name"]:
        print(x["full_text"]+"\n\n")
@SteveBakerHW @Kilsally Steve you're a #brexit hero but #Conservatives finished. To simplify, Lib/Lab/Con candidate knocks on my door for local vote. Promises to fix potholes. I say "We gave you one job - #leave - and your leader and MP's betrayed us." Shut door firmly. Vote for any other candidate.


@EMK2017 @romkes3 @petervdalen @carolaschouten @minlnv Klopt, dus maar bij de EU piepen als je ze nodig hebt en vergruizen als dat zo uitkomt?

Beter misschien is te leren en analyseren gevolgen emotionele  #brexit stem en stemmers. 

Er valt veel te verbeteren en leren - dat zeker. Fijne dag aan u.


@MailOnline Chilling... #brexit could lead #theresaMay to such an "end" too... #May be not with the very same phrase, not at the same date...


@nicholaswatt @TeresaWeath @BBCNewsnight Or #Brexit 🤨


@HindolSengupta Sir hugely respect you, however Indians still need 2 visas if they wish to visit UK. Post #Brexit the scenario remains the same.


@BBCkatyaadler Thanks for all your clarity. Can anyone tell me why, during #Brexit delay, sitting UK MEPs could not temporarily retain their seats, OR why temporary MEPs could not be co-opted, as has happened (I understand) with newly-joined EU countries?


@BBCPolitics Plenty of alternative ways to stop #Brexit  what about one where we actually leave the EU?


@JohnNemoBell @hilarybennmp An elected Parliament cannot be "rogue". It is constitutionally Supreme &amp; Sovereign, qualities now, apparently, slowly being disowned by #Brexit-eers.
Why? Surely not hypocrisy?


@realDonaldTrump Wish you were presiding over the UK @realDonaldTrump I'd feel a whole lot safer and I'm sure millions of others would too. Also #Brexit would be brexit. May God bless you &amp; your family always ❤️


@LBC Shelagh at the moment small &amp; micro UK businesses can have a postal address &amp; phone number in any EU country &amp; invoice from the UK without any requirement to incorporate in every EU country. That's a massive advantage that we would lose with any #Brexit


@freddouglass765 @IainDale The country is fed up of so many foreigners coming in.
We want to stop it and send some people home to catch our breaths.
#brexit


@BorisJohnson one of the reasons we are in this #Brexit mess is because of you and your lies, and since you are whingeing about Corbyn and not even trying to help sort out a workable solution the problem, you can unequivocally fuck right off you coward. Go away.


@BBCPolitics So like #Brexit then. How are their brains not exploding?


@lottyburns That's what we get for the  #Brexit fiasco!! Hell is freezing over.


@Ladylottebot @kitchenwriter You are talking about what will happen if we don't #Brexit idiot.

https://t.co/1S8NZlfwkZ


@Grimmsqueak The only way I have been able to deal with this with my mum who is an unrepetant Leaver ("the EU are bullying us") is to be very old school British and ignore it.  It is now included in the list of topics we can't discuss of Northern Ireland, Trump, colonialism and now #Brexit


@UKIP leads struggle to set Britain free from EU - Leader @GerardBattenMEP https://t.co/j8qfa9gxRD via @YouTube #UKIP #Brexit


I say from beginning Theresa just has to work with Jeremy to agree a solution for #brexit. Loads of Cons who have agendas because want her job failed to support Theresa and loads of labour who have agenda because want Jeremy’s job formed coups against him.


@angelMsattya @Phoenix4419 @WOTGM18 J Crater, it was already put to the people. In 2016. #Brexit


@emelertas @Telegraph Why is it always portrayed as the rightly entitled British and their creature comforts...? #Brexit


@alainkahn Je ziet wat voor chaos het #brexit referendum brengt. In mijn ogen komt er geen brexit, t hele circus is bedoeld om rotzooi te zaaien en de andere #EU landen te waarschuwen 'kijk dit krijg je er nou van' . De animo zal  daardoor dus niet groot zijn voor #nexit


@NazShahBfd @theresa_may @APPGBritMuslims @SadiqKhan That`s rich coming from you! What about #LabourAntisemitism mrs? "He also defended MP Naz Shah, who was suspended in 2016 for retweeting a satirical graphic suggesting Israel should be relocated to the USA." 🇬🇧🇺🇸#ALEXJONES #INFOWARS #NEWSWARS #Brexit


@Conservatives You're not delivering us the #Brexit we voted for though are you


@SusanneSchnabl @LandauDaniel @Karin_Kneissl Der #Brexit ist wie das Frühstücksei, das man im Hotel bestellt: Man weiß nicht, ob es weich oder hart wird und ob es überhaupt kommt.


@SocialM85897394 French people are shafted by the EU establishment since our 2005 referendum.
2005 -----------------------------&gt; 2019
                   14 years!!!
#Brexit #Frexit https://t.co/Mn4k2BQ5To


@NemesisUK yeah its brilliant... I love the anger... and overall its just sad what happens with brexit... I can't understand this... I hope it will end good and people just forgett this #brexit idea... its just stupid... not working at all and it hurts everyone... #pleasestayuk


@guyverhofstadt #brexit now! https://t.co/gS71CUHU3y


@nadams Thank you for keeping to your principles and defending our democracy and #Brexit. #StandUp4Brexit #BrexitBetrayal


@Jo_Marney #Brexit #Frexit please RT 🇬🇧🇫🇷 https://t.co/3ozrGKCsgC


@RupertMyers @JamesArcher767 Ultimately remainers would have had no power whatsoever to stop #brexit if any credible Brexit plan was backed by the people who actually voted Brexit!


@Andrew_Adonis Get the @UKIP MEP's OUT
They do not represent us in #EuropeanParliament and do not look after our interests in Europe, just as always, these #brexiters are totally selfish
As #Brexit is selfishness on steroids
#RevokeArticle50 #EUelections2019
#StopBrexitSaveDemocracy


@Lugey6 demonstrates perfectly why #brexit is failing in her debate with @lara_spirit on #bbc Afternoon Live. She delivers a masterclass in not listening as she talks over Lara at every opportunity. Again a #brexiteer fails to understand it's not about the 17.4m, but the 67m.


@bbclaurak Who gives a CUK, they're all now redundant #Brexit


@BorisJohnson I'm convinced that in time, when this #Brexit crap is over and we're still in the EU. Googling #BlowJob will bring up a picture of you.


@GraWitMik @guyverhofstadt A majority of the votes cast. That’s how it works. The future belongs to those who turn up. #Brexit


@NicolaSturgeon @jeremycorbyn I think you'd be more disappointed than surprised. He's a Eurosceptic determined to get *some* kind of #Brexit delivered.


@hyppi737 @BlueBobX @Helginton31 @MelisssfMelissa What’s your point,
Transshipment the future ?
That just logistics !!
Hub and spoke.
You and #Brexit not making sense.
That’s because it’s STUPID.
But
You well on route to finding out that.
And perhaps that’s a good thing.
Bitch slapping by the yanks.
Cheap imports.
And refrugees


Former Tory leader Iain Duncan Smith has spoken out AGAINST the new #Brexit bill which aims to stop #NoDeal - saying we must stop "quick bills" going to the unelected @UKHouseofLords without proper scrutiny
"If you legislate in haste, you repent in leisure" https://t.co/EIkz3zJYgu


@BBCPolitics Language that's a little bit rich considering it is the @Conservatives that are destroying our country in front of our eyes. #Brexit #PeoplesVote #RevokeArticle50


@CatherineWest1 Will @jeremycorbyn, your leader, enable @theresa_may #brexit? I am watching, along with many other voters in your constituency. This could well unstitch your efforts for a @peoplesvote_uk. How do you reply? https://t.co/HNz30hZdOR


@SkyNews Doesn’t anybody remember @BorisJohnson promising to spaff from the top of a red bus for every pound that the #Brexit dividend would send to the @NHSuk provided Britain left with no deal.

Wasn’t it 350 million times a week?


@guardian #Brexit was perfectly deliverable until the June 17 Election.

That led to Brexit being held hostage by the #DUP, who prevented the only sane solution to the Irish border issue (i.e. Northern Ireland's remaining in the Customs Union).


Die hätten auch den 31. April als Termin nehmen können bis zu dem sie den #Brexit schaffen - das wäre dann realistisch 😂😂😂


@jeremycorbyn I will vote @UKLabour in the next election precisely on these policies. But if we #Brexit then you will have taken my right to vote in European Elections and effect real change that effects is as Europeans.


@jc4southsuffolk making clear he chose not to represent the views of his constituents but rather the needs of the rudderless @Conservatives #Brexit✅ @ActionEastBergh https://t.co/NrTBToISdX


@DJAndyMoor I blame #Brexit


@sinkaspud @theresa_may @jeremycorbyn @Conservatives @labour How many of those #Brexit seats are safe seats for either party? Unless you think #Labour/#Tory voters will vote for each other because of #Brexit then #Leave isn't a #GeneralElection winner. At moment #Labour &amp; #Tories face a real threat of losing their remain voters.


@snb19692 Golly, Steve - Andrew Bridgen looks twice before stepping out in front of a moving vehicle but doesn't bat an eyelid at forcing the country to step off a #NoDeal #Brexit cliff-edge without pausing to rethink...

#ERG #Tories


@jeremycorbyn @tom_watson @Keir_Starmer @RLong_Bailey @AngelaRayner @tony4rochdale @RichardBurgon @BarryGardiner @EmilyThornberry @johnmcdonnellMP @NiaGriffithMP @HackneyAbbott @GwynneMP  It's a trap. She'll drag you down with her. Don't do it. Don't go there! @uklabour #brexit


#Juncker: "But 12 April is the ultimate deadline for the approval of the #WithdrawalAgreement by the House of Commons.  If it hasn't done so by then, no further short extension will be possible. After 12 April, we risk jeopardising the European parliament elections." #Brexit


@jndkgrf @mening_geven Zie deze film “Brexit the Movie”, en u weet waarin wij gevangen zitten....

https://t.co/KtmVIrYOQA

#Brexit #Nexit #EU


@roelvanmaercke @BartDeMeulenaer @oude_lap EU accepteert #Brexit zonder meer en legt verantwoordelijkheid volledig bij UK. Probleem ligt vooral intern, waar geen enkel voorstel (zelfs Europees ondersteund) wordt goedgekeurd. Nieuw referendum? Neen. Harde brexit? Neen. Zachte brexit? Neen.


@bbclaurak #Brexit Deals with the #Demons what Next Justice for the People #Crimesagainstsociety


@guardian So there'll be no #Brexit ?

Better prepare yourself for the #British Bolsonaro then, Paul !


@BriefcaseMike @BBCPolitics Duncan Smith is speaking the truth !! Corbyn IS all he says he is ,Corbyn is a traitor to the Uk and its people #Brexit


@christopherhope @theresa_may is too busy cuddling up to @jeremycorbyn to stop #Brexit.
@Conservatives @GOVUK @ConHome


@Stone_SkyNews @pierremoscovici So we can’t go to Greggs before we go to the home of gastronomy? Mmmm harsh - on the flip side Brexit already has created nearly 3000 new jobs in customs and excise in Europe #brexit


Retweets, quotes and replies can be used to create networks of users in which the influence of users can be quantified (e.g. with eigenvector centrality)

Location information can be extracted and mapped

In [102]:
for i,x in json1.iterrows():
    if x["coordinates"]:
        print(x["coordinates"]["coordinates"])
[2.9190061, 51.22671509]
[-2.27477495, 53.43865597]
[-0.1, 51.6167]
[2.48660807, 49.02227735]

Not many tweets contain exact geocoordinates.

In [123]:
import folium
import html
import branca

brexit_map = folium.Map(prefer_canvas=True)

for i,x in json1.iterrows():
    if x["coordinates"]:
        text = folium.Html(x["full_text"], script=True) 
        coords = x["coordinates"]["coordinates"]
        iframe = branca.element.IFrame(html=text, width=450, height=150)
        brexit_map.add_child(folium.CircleMarker(location=coords,  
                            radius=4,
                            popup = folium.Popup(text, max_width=450, parse_html=True),
                            opacity = 0.5,
                            fill=True,
                            fill_opacity=0.5))
brexit_map
Out[123]:

We may need to use place and user:location values if we want to map lots of tweets.

Ultimately, our choice of what to parse from the JSON, what to count, and what to visualize, will depend on what questions we pose of the data.

That's all for now! Thanks for listening!